/* 
* ShieldCase E-commerce CSS
* A comprehensive stylesheet for the ShieldCase phone case and protector online store
*/

/* -------------------------------------------------------------
   CSS Reset and Base Styles
   ------------------------------------------------------------- */
:root {
    /* Primary Colors */
    --primary-color: #3b82f6; /* Blue */
    --primary-dark: #1e40af;
    --primary-light: #93c5fd;
    
    /* Secondary Colors */
    --secondary-color: #10b981; /* Green */
    --secondary-dark: #065f46;
    --secondary-light: #a7f3d0;
    
    /* Neutral Colors */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Accent Colors */
    --accent-yellow: #f59e0b;
    --accent-red: #ef4444;
    --accent-purple: #8b5cf6;
    
    /* Utility Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Shadow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transition */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Container Width */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1;
    font-size: 1rem;
}

.btn i, .btn svg {
    margin-right: 0.5rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    color: white;
    box-shadow: var(--shadow-md);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
}

.text-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
}

.view-btn {
    background-color: var(--background-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.view-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Cookie consent buttons */
.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.cookie-btn.secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-btn.secondary:hover {
    background-color: var(--border-color);
}

/* -------------------------------------------------------------
   Header & Navigation
   ------------------------------------------------------------- */
header {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.main-nav a:hover, 
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.main-nav a:hover::after, 
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    padding: 0.5rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.cart-icon:hover,
.cart-icon.active {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all var(--transition-normal);
}

/* -------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------- */
.hero {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------------------------------
   Features Section
   ------------------------------------------------------------- */
.features {
    padding: 5rem 0;
    background-color: var(--background-white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    color: var(--text-medium);
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.cta-banner h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-banner .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta-banner .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------------------
   About Products Section
   ------------------------------------------------------------- */
.about-products {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.about-products h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-products p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quality-assurance, 
.brand-story {
    margin-top: 3rem;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.quality-assurance h3, 
.brand-story h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quality-assurance ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.quality-assurance li {
    margin-bottom: 0.75rem;
    position: relative;
    list-style-type: disc;
}

/* -------------------------------------------------------------
   Products Section
   ------------------------------------------------------------- */
.products {
    padding: 5rem 0;
    background-color: var(--background-white);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.new-product {
    background-color: var(--accent-purple);
}

.product-badge.popular {
    background-color: var(--accent-yellow);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-info p {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 0.75rem;
    font-size: 0.875rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    color: var(--accent-yellow);
    font-size: 0.875rem;
}

.product-rating i {
    margin-right: 0.1rem;
}

.product-rating span {
    color: var(--text-medium);
    margin-left: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

/* Related/Similar Products Slider */
.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.products-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.related-products,
.might-like-section,
.recommended-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.related-products h2,
.might-like-section h2,
.recommended-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* -------------------------------------------------------------
   Newsletter Section
   ------------------------------------------------------------- */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-dark), var(--secondary-dark));
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 5rem 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
}

.footer-logo span {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-column p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.payment-methods i:hover {
    color: white;
}

/* -------------------------------------------------------------
   Cookie Consent
   ------------------------------------------------------------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    z-index: 1000;
    display: none; /* Will be shown with JavaScript */
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cookie-policy {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   Page Header (for interior pages)
   ------------------------------------------------------------- */
.page-header {
    padding: 3rem 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb li {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.breadcrumb li:not(:last-child):after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-medium);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .active {
    color: var(--primary-color);
}

/* -------------------------------------------------------------
   Product Detail Page
   ------------------------------------------------------------- */
.product-detail {
    padding: 4rem 0;
    background-color: var(--background-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Product Images */
.product-images {
    position: relative;
}

.main-image {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-gallery {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.thumbnail.active, .thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info .product-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-info .product-badge.best-seller {
    background-color: var(--primary-color);
}

.product-info .product-badge.new-badge {
    background-color: var(--accent-purple);
}

.product-info .product-badge.popular-badge {
    background-color: var(--accent-yellow);
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.product-rating {
    margin-bottom: 1.5rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.product-price .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .old-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 0.75rem;
}

.product-price .discount-badge {
    background-color: var(--accent-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.75rem;
}

.product-availability {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-availability.in-stock {
    color: var(--success);
}

.product-availability.low-stock {
    color: var(--warning);
}

.product-availability.out-of-stock {
    color: var(--error);
}

.product-availability i {
    margin-right: 0.5rem;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.product-features h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.125rem;
    width: 20px;
}

/* Product Variations */
.product-variations {
    margin-bottom: 2rem;
}

.variation-group {
    margin-bottom: 1.5rem;
}

.variation-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.variation-options {
    margin-bottom: 0.75rem;
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.option-btn {
    padding: 0.75rem 1.25rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.option-btn:hover, .option-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.color-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.color-option::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.color-option.active::after, .color-option:hover::after {
    opacity: 1;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 2rem;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quantity-btn.minus {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.quantity-btn.plus {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quantity-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.quantity-controls input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    padding: 0.5rem;
    -moz-appearance: textfield;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-actions .btn {
    flex: 1;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.meta-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 4rem;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Reviews */
.reviews-summary {
    margin-bottom: 2.5rem;
}

.rating-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.average-rating .stars {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin: 0.5rem 0;
}

.reviews-count {
    color: var(--text-medium);
    font-size: 0.875rem;
}

.rating-breakdown {
    flex: 1;
}

.rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.rating-label {
    width: 60px;
    text-align: right;
    padding-right: 1rem;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: 1rem;
}

.rating-fill {
    height: 100%;
    background-color: var(--accent-yellow);
    border-radius: var(--radius-full);
}

.rating-percentage {
    width: 40px;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

.reviewer-rating {
    color: var(--accent-yellow);
    font-size: 0.875rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-title h4 {
    margin-bottom: 0.5rem;
}

.review-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    width: 30%;
    font-weight: 600;
    color: var(--text-dark);
}

.specs-table td {
    color: var(--text-medium);
}

/* Add To Cart Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    z-index: 1001;
    max-width: 300px;
    transform: translateX(120%);
    transition: transform var(--transition-normal);
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content i {
    font-size: 1.5rem;
    color: var(--success);
    margin-right: 1rem;
}

.notification-content p {
    margin-bottom: 0;
    font-weight: 500;
}

/* -------------------------------------------------------------
   Cart Page
   ------------------------------------------------------------- */
.cart-section {
    padding: 4rem 0;
    background-color: var(--background-white);
}

.cart-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Empty Cart */
.empty-cart {
    padding: 5rem 2rem;
    text-align: center;
}

.empty-cart-content i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.empty-cart-content h2 {
    margin-bottom: 1rem;
}

.empty-cart-content p {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

/* Cart Items */
.cart-items-container {
    padding: 2rem;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.cart-items {
    margin: 2rem 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-product {
    display: flex;
    align-items: center;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-right: 1rem;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-product-info .variant {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.cart-price {
    font-weight: 600;
}

.cart-quantity {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.cart-quantity .quantity-btn {
    width: 30px;
    height: 30px;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
}

.cart-subtotal {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-remove {
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    text-align: center;
}

.cart-remove:hover {
    color: var(--error);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.coupon-container {
    display: flex;
    gap: 0.5rem;
}

.coupon-container input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 180px;
}

/* Cart Totals */
.cart-totals-container {
    padding: 2rem;
    background-color: var(--background-light);
}

.cart-totals-container h3 {
    margin-bottom: 1.5rem;
}

.cart-totals {
    margin-bottom: 2rem;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.totals-row.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.totals-label {
    color: var(--text-dark);
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-btn {
    width: 100%;
    font-size: 1.125rem;
    padding: 1rem;
}

/* -------------------------------------------------------------
   Checkout Page
   ------------------------------------------------------------- */
.checkout-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.checkout-container {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
}

.checkout-form-container {
    padding: 3rem;
    border-right: 1px solid var(--border-color);
}

.checkout-form-container h2 {
    margin-bottom: 2.5rem;
}

.checkout-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group .required {
    color: var(--error);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.place-order-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    margin-top: 2rem;
}

/* Order Summary */
.order-summary-container {
    padding: 3rem;
    background-color: var(--background-light);
}

.order-summary-container h2 {
    margin-bottom: 2.5rem;
}

.order-summary {
    border-radius: var(--radius-lg);
    background-color: white;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.order-items {
    padding: 1.5rem 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.order-item-name {
    flex: 1;
}

.order-item-name .variant {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.order-item-quantity {
    color: var(--text-medium);
}

.order-item-total {
    font-weight: 600;
    margin-left: 1.5rem;
}

.order-subtotal,
.order-shipping,
.order-discount,
.order-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.order-total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Secure Checkout Info */
.secure-checkout {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--info);
}

.secure-icon {
    font-size: 1.5rem;
    color: var(--info);
    margin-right: 1rem;
}

.secure-text p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Empty Checkout */
.empty-checkout {
    padding: 5rem 2rem;
    text-align: center;
}

.empty-checkout-content i {
    font-size: 4rem;
    color: var(--warning);
    margin-bottom: 1.5rem;
}

.empty-checkout-content h2 {
    margin-bottom: 1rem;
}

.empty-checkout-content p {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

/* -------------------------------------------------------------
   Success Page
   ------------------------------------------------------------- */
.success-section {
    padding: 5rem 0;
    background-color: var(--background-white);
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.success-container h1 {
    margin-bottom: 1.5rem;
    color: var(--success);
}

.success-container p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    margin: 3rem 0;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
}

.success-details h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* -------------------------------------------------------------
   About Page
   ------------------------------------------------------------- */
.about-intro {
    padding: 5rem 0;
    background-color: var(--background-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.about-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    height: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.value-item p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Achievements Section */
.about-achievements {
    padding: 5rem 0;
    background-color: var(--background-light);
    text-align: center;
}

.about-achievements h2 {
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background-color: white;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition-normal);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-text {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1.125rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--background-white);
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-medium);
    font-size: 1.125rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.25rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.member-social a:hover {
    background-color: var(--primary-color);
}

.member-social a:hover svg {
    fill: white;
}

.member-social svg {
    width: 16px;
    height: 16px;
    fill: var(--text-medium);
    transition: fill var(--transition-fast);
}

/* Certifications */
.certifications {
    padding: 5rem 0;
    background-color: var(--background-light);
    text-align: center;
}

.certifications h2 {
    margin-bottom: 1rem;
}

.certifications > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-medium);
    font-size: 1.125rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.certification-item {
    background-color: white;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.certification-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.certification-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.certification-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.certification-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-dark), var(--secondary-dark));
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.cta-section .btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.cta-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------------------
   Contact Page
   ------------------------------------------------------------- */
.contact-section {
    padding: 5rem 0;
    background-color: var(--background-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-content p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.social-connect h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-form-container {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.contact-form-container h2 {
    margin-bottom: 1rem;
}

.contact-form-container > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.faq-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-medium);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   Responsive Styles
   ------------------------------------------------------------- */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-form-container {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
        position: static;
    }
    
    .stats-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .price-col {
        display: none;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 3fr 1fr 1fr;
    }
    
    .remove-col, .cart-remove {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
}
