/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    /* Colors - Easy to edit */
    --primary-color: #dd1d1d;
    --secondary-color: #46cfe2;
    --dark-bg: #121212;
    --light-bg: #ffffff;
    --gray-bg: #f3f3f3;
    --text-dark: #2e2a39;
    --text-light: #ffffff;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
}

img, video {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Remove highlight */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.product-actions-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    width: 100%;
}

.btn-info {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-info:hover {
    background: #5a2d73;
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center align text */
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    text-align: center; /* Extra center alignment */
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4444 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(221, 29, 29, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: var(--font-weight-bold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c01515 0%, #dd1d1d 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(221, 29, 29, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 4px 15px rgba(221, 29, 29, 0.5);
}

.btn-secondary {
    background: var(--gray-bg);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #e0e0e0;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-large {
    padding: 18px 36px;
    font-size: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(221, 29, 29, 0.3);
}
.btn-large:hover {
    box-shadow: 0 10px 30px rgba(221, 29, 29, 0.4);
}

.highlight {
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: var(--spacing-lg);
}

/* ===========================
   HEADER
   =========================== */
.header {
    background: var(--light-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #46cfe2;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #46cfe2;
    color: var(--text-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
    background: #46cfe2;
    color: var(--text-light);
    text-align: center;
    padding: var(--spacing-xs);
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.announcement-bar:hover {
    background: #159aa9;
    color: var(--text-light);
}

.announcement-bar p {
    margin: 0;
    font-size: 14px;
}

#timer {
    font-weight: bold;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image {
    position: relative;
    padding-top: 85%;
    background: var(--gray-bg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #46cfe2;
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
}

.product-badge.sale {
    background: var(--success-color);
}

.product-info {
    padding: var(--spacing-md);
    text-align: center;
}

.product-info h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.price-wrapper {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #46cfe2;
}

.product-price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.add-to-cart {
    width: 100%;
    margin-top: var(--spacing-sm);
    padding: 16px 24px;
    font-size: 18px;
    background: linear-gradient(135deg, #46cfe2 0%, #ff4444 100%);
    position: relative;
    overflow: hidden;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.add-to-cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.add-to-cart:hover::after {
    width: 300px;
    height: 300px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #c01515 0%, #dd1d1d 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(221, 29, 29, 0.4),
        0 0 40px rgba(221, 29, 29, 0.15);
}

.add-to-cart.navigating {
    pointer-events: none;
    opacity: 0.9;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #8e44ad 100%);
}

.add-to-cart.navigating::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}


/* ===========================
   PRODUCT DETAIL SECTION
   =========================== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.add-to-cart .material-icons {
    transition: transform 0.3s ease;
}

.add-to-cart:hover .material-icons {
    transform: translateX(5px);
}

.product-detail {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: var(--gray-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Info */
.product-info-wrapper {
    max-width: 600px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.product-price {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.product-badge {
    background: var(--success-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
}

.product-description {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.product-description p {
    line-height: 1.8;
}

/* Product Features */
.product-features {
    margin-bottom: var(--spacing-lg);
}

.product-features h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
}

.product-features .material-icons {
    color: var(--success-color);
    font-size: 20px;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.add-to-cart-main {
    flex: 1;
}

/* Payment Badges */
.payment-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.payment-badges img {
    height: 30px;
    width: auto;
}

/* Upsells Section */
.upsells-section {
    background: var(--gray-bg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
}

.upsells-section h3 {
    margin-bottom: var(--spacing-md);
}

.upsell-item {
    background: var(--light-bg);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.upsell-item:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow);
}

.upsell-item label {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
}

.upsell-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.upsell-info {
    flex: 1;
}

.upsell-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.upsell-price {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

/* ===========================
   PRODUCT FEATURES SECTION
   =========================== */
.product-features-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-bg);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: center;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: var(--spacing-lg);
}

.feature-block.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-video {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.feature-video video {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content {
    padding: var(--spacing-md);
}

.feature-label {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature-content p {
    line-height: 1.8;
    color: #666;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn {
    background: var(--light-bg);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    transform: scale(1.05);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--gray-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.testimonial-card p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid #eee;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-weight: var(--font-weight-semibold);
}

/* ===========================
   STATS SECTION
   =========================== */
.stats {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #46cfe2;
    position: relative;
    background: #f0f0f0; /* Light gray background for incomplete portion */
    
    /* Create the circular progress effect */
    background-image: conic-gradient(
        #46cfe2 0deg,
        #46cfe2 var(--percentage, 0deg),
        #333 var(--percentage, 0deg),
        #333 360deg
    );
    
    transition: all 0.6s ease-out;
}

/* Inner circle to create the donut effect and hold the text */
.stat-circle::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Text positioning */
.stat-circle span {
    position: relative;
    z-index: 2;
}

/* Animation keyframes */
@keyframes fillCircle {
    from {
        --percentage: 0deg;
    }
    to {
        --percentage: var(--target-percentage);
    }
}

/* Trigger animation when element comes into view */
.stat-circle.animate {
    animation: fillCircle 1.5s ease-out forwards;
}

/* Individual percentage settings - you can set these dynamically */
.stat-circle[data-percentage="95"] {
    --target-percentage: 342deg; /* 95% of 360deg */
}

.stat-circle[data-percentage="92"] {
    --target-percentage: 331.2deg; /* 92% of 360deg */
}

.stat-circle[data-percentage="97"] {
    --target-percentage: 349.2deg; /* 97% of 360deg */
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-bg);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-item summary {
    padding: var(--spacing-md);
    cursor: pointer;
    font-weight: var(--font-weight-semibold);
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: rgba(0, 0, 0, 0.05);
}

.faq-item[open] summary {
    background: rgba(0, 0, 0, 0.05);
}

.faq-item p {
    padding: 0 var(--spacing-md) var(--spacing-md);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--gray-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .material-icons {
    font-size: 3rem;
    color: #46cfe2;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #46cfe2;
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #159aa9;
    transform: scale(1.1);
}


.btn-buy-now {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 16px 32px;
   border: none;
   border-radius: 8px;
   font-weight: var(--font-weight-bold);
   cursor: pointer;
   text-decoration: none;
   font-size: 18px;
   text-align: center;
   width: 100%;
   
   background: linear-gradient(135deg, var(--primary-color) 0%, #ff4444 100%);
   color: var(--text-light);
   text-transform: uppercase;
   letter-spacing: 0.5px;
   
   box-shadow: 
       0 4px 15px rgba(221, 29, 29, 0.4),
       0 0 30px rgba(221, 29, 29, 0.2),
       inset 0 1px 0 rgba(255, 255, 255, 0.1);
   
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.btn-buy-now:hover {
   transform: scale(1.05);
   box-shadow: 
       0 6px 20px rgba(221, 29, 29, 0.5),
       0 0 40px rgba(221, 29, 29, 0.3),
       inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* More Information Button */
.btn-more-info {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 24px;
   border: 2px solid var(--secondary-color);
   border-radius: 8px;
   background: transparent;
   color: var(--secondary-color);
   font-weight: var(--font-weight-semibold);
   cursor: pointer;
   text-decoration: none;
   font-size: 16px;
   text-align: center;
   transition: all 0.3s ease;
   width: 100%;
   display: inline-flex;
   box-sizing: border-box;
}

.btn-more-info:hover {
   background: var(--secondary-color);
   color: var(--text-light);
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(109, 56, 139, 0.3);
}

.btn-more-info-outline {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 24px;
   border: 1px solid #ddd;
   border-radius: 8px;
   background: var(--light-bg);
   color: var(--text-dark);
   font-weight: var(--font-weight-normal);
   cursor: pointer;
   text-decoration: none;
   font-size: 16px;
   text-align: center;
   
   transition: all 0.2s ease;
}

.btn-more-info-outline:hover {
   border-color: var(--secondary-color);
   color: var(--secondary-color);
   box-shadow: 0 2px 8px rgba(109, 56, 139, 0.1);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--light-bg);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .add-to-cart {
        padding: 14px 20px;
        font-size: 16px;
    }
    .btn-large {
        padding: 16px 28px;
        font-size: 18px;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    /* Product Detail */
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    /* Feature Blocks */
    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    /* Grid Adjustments */
    .products-grid,
    .testimonials-grid,
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .feature-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Video Section Styles */
.video-showcase {
    padding: var(--spacing-lg) 0;
    background: var(--gray-bg);
}

.video-wrapper {
    max-width: 640px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}