* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b00;
    --primary-dark: #e05500;
    --secondary: #1a1a2e;
    --accent: #16213e;
    --light: #f8f9fa;
    --dark: #0f0f1a;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.section-title p {
    color: var(--gray);
    font-size: 17px;
    max-width: 600px;
    margin: 15px auto 0;
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar a { color: var(--white); margin-right: 20px; }
.top-bar a i { margin-right: 5px; color: var(--primary); }
.top-bar .social a { margin-left: 15px; margin-right: 0; font-size: 15px; transition: var(--transition); }
.top-bar .social a:hover { color: var(--primary); }

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
header.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img { height: 45px; }
.logo-text {
    font-size: 26px;
    font-weight: 900;
    color: var(--secondary);
}
.logo-text span { color: var(--primary); }
.logo-sub {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
.cart-icon {
    position: relative;
    font-size: 20px;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 50%, #0d1117 100%);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--primary);
}
.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}
.hero-stat h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}
.hero-stat p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}
.hero-image {
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary);
}
.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
}
.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}
.service-card .price-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 18px;
    background: rgba(255,107,0,0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

/* Pricing */
.pricing {
    background: var(--light);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}
.pricing-card.featured .pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}
.pricing-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
}
.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.pricing-header .price {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
}
.pricing-header .price span {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}
.pricing-body {
    padding: 30px;
}
.pricing-body ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.pricing-body ul li:last-child {
    border-bottom: none;
}
.pricing-body ul li i {
    color: var(--primary);
}
.pricing-body ul li i.fa-times {
    color: var(--gray);
    opacity: 0.5;
}
.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}
.about-content h2 span { color: var(--primary); }
.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
}
.about-feature i {
    color: var(--primary);
    font-size: 18px;
}

/* Contact */
.contact {
    background: var(--light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,107,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary);
}
.contact-item p {
    color: var(--gray);
    font-size: 14px;
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light);
    margin-bottom: 20px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}
.contact-form textarea {
    height: 120px;
    resize: vertical;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.team-card .team-info {
    padding: 25px;
}
.team-card h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
}
.team-card p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 15px;
}
.team-card .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--light-gray);
    border-radius: 50%;
    margin: 0 4px;
    color: var(--gray);
    transition: var(--transition);
    font-size: 14px;
}
.team-card .team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Testimonials */
.testimonials {
    background: var(--secondary);
    color: var(--white);
}
.testimonials .section-title h2 { color: var(--white); }
.testimonials .section-title p { color: rgba(255,255,255,0.7); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 14px;
}
.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h5 {
    font-size: 15px;
}
.testimonial-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card .blog-body {
    padding: 25px;
}
.blog-card .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}
.blog-card .blog-meta i { margin-right: 5px; color: var(--primary); }
.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
}
.blog-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.blog-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.blog-card .read-more i { margin-left: 5px; transition: var(--transition); }
.blog-card .read-more:hover i { margin-left: 10px; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}
.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}
.cta-section .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Cart Page */
.cart-page {
    min-height: 400px;
}
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cart-item {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr auto;
    gap: 20px;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}
.cart-item h4 { font-size: 16px; color: var(--secondary); }
.cart-item .price { font-weight: 700; color: var(--primary); }
.cart-item .qty {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-item .qty button {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}
.cart-item .qty button:hover {
    background: var(--primary);
    color: var(--white);
}
.cart-item .qty span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}
.cart-item .remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}
.cart-item .remove-btn:hover {
    transform: scale(1.2);
}
.cart-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}
.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 15px;
}
.cart-summary .summary-row.total {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    border-bottom: none;
    padding-top: 20px;
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}
.checkout-form { background: var(--white); padding: 35px; border-radius: 16px; box-shadow: var(--shadow); }
.checkout-form h3 { margin-bottom: 25px; font-size: 22px; }
.checkout-form .form-group { margin-bottom: 20px; }
.checkout-form label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; }
.checkout-form input, .checkout-form textarea, .checkout-form select {
    width: 100%; padding: 12px 16px; border: 2px solid var(--light-gray);
    border-radius: 8px; font-size: 14px; font-family: inherit; transition: var(--transition);
}
.checkout-form input:focus, .checkout-form textarea:focus {
    border-color: var(--primary); outline: none;
}
.order-summary { background: var(--white); padding: 35px; border-radius: 16px; box-shadow: var(--shadow); height: fit-content; }
.order-summary h3 { margin-bottom: 25px; }

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}
.page-banner h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}
.page-banner h1 span { color: var(--primary); }
.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    margin-top: 15px;
    font-size: 14px;
}
.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); margin: 0 8px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Footer */
footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-about h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}
.footer-about h3 span { color: var(--primary); }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}
.footer-contact i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
}

/* Products / Shop Page */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.shop-header .results {
    color: var(--gray);
    font-size: 15px;
}
.shop-header select {
    padding: 10px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    background: var(--white);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.product-card .product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.product-card .product-info {
    padding: 25px;
}
.product-card .product-category {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.product-card h3 {
    font-size: 18px;
    margin: 8px 0;
    color: var(--secondary);
}
.product-card .product-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}
.product-card .product-price span {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}
.product-card .product-rating {
    color: #ffc107;
    font-size: 13px;
    margin-bottom: 15px;
}
.product-card .product-rating span {
    color: var(--gray);
    margin-left: 5px;
}
.product-card .add-to-cart {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--secondary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}
.product-card .add-to-cart:hover {
    background: var(--primary);
}

/* Blog Single */
.blog-single {
    max-width: 800px;
    margin: 0 auto;
}
.blog-single img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
}
.blog-single h1 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}
.blog-single .meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
}
.blog-single .meta i { margin-right: 5px; color: var(--primary); }
.blog-single p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}
.blog-single h2 {
    font-size: 26px;
    color: var(--secondary);
    margin: 30px 0 15px;
}

/* Services Detail Page */
.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.services-detail-grid.reverse {
    direction: rtl;
}
.services-detail-grid.reverse > * {
    direction: ltr;
}
.services-detail-grid img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.services-detail-grid h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}
.services-detail-grid p {
    color: var(--gray);
    line-height: 1.8;
}
.services-detail-grid .features-list {
    margin-top: 20px;
}
.services-detail-grid .features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.services-detail-grid .features-list li i {
    color: var(--primary);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.4s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.toast.show {
    transform: translateX(0);
}
.toast i {
    font-size: 20px;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 36px; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .services-detail-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        gap: 20px;
        align-items: flex-start;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 17px; }
    .top-bar .container { flex-direction: column; gap: 5px; }
    .top-bar .info { display: flex; flex-wrap: wrap; justify-content: center; }
    .top-bar .info a { margin: 0 10px; }
    .hero { padding: 80px 0 60px; }
    .hero-content h1 { font-size: 28px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat h3 { font-size: 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 28px; }
    .page-banner h1 { font-size: 30px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 60px 1fr; gap: 10px; }
    .about-features { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 24px; }
    .logo-text { font-size: 20px; }
    .btn { padding: 12px 24px; font-size: 13px; }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
