/* ===================================
   CRAFTBOX - Creative Craft Supplies Store
   Complete CSS Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD9;

    /* Secondary Colors (Purple) */
    --secondary-color: #9C27B0;
    --secondary-dark: #7B1FA2;
    --secondary-light: #E1BEE7;

    /* Accent Colors (Yellow) */
    --accent-color: #FFEB3B;
    --accent-dark: #FBC02D;
    --accent-light: #FFF9C4;

    /* Neutral Colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --black: #000000;

    /* Background Colors */
    --bg-light: #FFF8F9;
    --bg-cream: #FFFBF0;
    --bg-mint: #E8F8F5;
    --bg-lavender: #F3E5F5;
    --bg-gray: #F5F5F5;

    /* Additional Craft Colors */
    --craft-yellow: #FFD54F;
    --craft-green: #81C784;
    --craft-purple: #BA68C8;
    --craft-orange: #FF8A65;
    --craft-blue: #64B5F6;

    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    --font-accent: 'Pacifico', cursive;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-color: 0 4px 20px rgba(233, 30, 99, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1400px;
    --container-padding: 20px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition-normal);
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: 2px solid var(--bg-gray);
    transition: var(--transition-normal);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.font-accent {
    font-family: var(--font-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 39, 176, 0.4);
}

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

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

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

.btn-white:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title span {
    color: var(--primary-color);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 8px 0;
    color: var(--white);
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.top-bar-right a:hover {
    opacity: 0.8;
}

/* Main Header */
.main-header {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--primary-color);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

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

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

/* Mega Menu */
.has-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 100;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.mega-menu-column h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-light);
}

.mega-menu-column ul li {
    margin-bottom: var(--spacing-sm);
}

.mega-menu-column ul li a {
    color: var(--text-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-search {
    position: relative;
}

.search-toggle {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.search-toggle:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-md);
    width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.search-form {
    display: flex;
    gap: var(--spacing-sm);
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--bg-gray);
}

.search-form button {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    color: var(--white);
}

.header-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
}

.header-icon:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding-top: 140px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    min-height: 600px;
    padding: var(--spacing-xxl) 0;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--craft-yellow);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
}

.hero-title .accent {
    font-family: var(--font-accent);
    color: var(--accent-color);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-features {
    display: flex;
    gap: var(--spacing-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero-feature i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Floating Elements */
.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-float-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1s;
}

.hero-float-3 {
    top: 10%;
    right: 20%;
    animation-delay: 2s;
}

.float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.hero-float span {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
}

.hero-float small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Hero Slider Navigation */
.hero-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.hero-dot.active {
    width: 40px;
    background: var(--primary-color);
}

/* Decorative Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.5;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    top: 10%;
    left: -100px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    bottom: 20%;
    right: 5%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--craft-yellow);
    border-radius: var(--radius-lg);
    top: 30%;
    right: 10%;
    transform: rotate(45deg);
}

/* ===================================
   CATEGORIES SECTION
   =================================== */
.categories {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
}

.category-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition-normal);
}

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

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover .category-icon,
.category-card:hover .category-name,
.category-card:hover .category-count {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.category-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    transition: var(--transition-normal);
}

.category-count {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition-normal);
}

/* Category Colors */
.category-card.sewing .category-icon { color: var(--primary-color); }
.category-card.paper .category-icon { color: var(--craft-purple); }
.category-card.beading .category-icon { color: var(--accent-color); }
.category-card.painting .category-icon { color: var(--craft-orange); }
.category-card.yarn .category-icon { color: var(--craft-green); }

/* ===================================
   FEATURED PRODUCTS
   =================================== */
.featured-products {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-cream);
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--text-medium);
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

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

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

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

/* Product Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.badge {
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.badge-sale {
    background: var(--primary-color);
    color: var(--white);
}

.badge-bestseller {
    background: var(--craft-yellow);
    color: var(--text-dark);
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.action-btn.wishlist-active {
    background: var(--primary-color);
    color: var(--white);
}

/* Quick Add */
.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.product-card:hover .quick-add {
    transform: translateY(0);
}

.quick-add-btn {
    width: 100%;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary-color);
}

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

/* Product Info */
.product-info {
    padding: var(--spacing-lg);
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.product-name:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--craft-yellow);
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* ===================================
   CRAFT KITS SECTION
   =================================== */
.craft-kits {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.kit-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    transition: var(--transition-normal);
}

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

.kit-image {
    width: 200px;
    flex-shrink: 0;
}

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

.kit-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.kit-level {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.kit-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.kit-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.kit-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.kit-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ===================================
   PROJECT INSPIRATION
   =================================== */
.inspiration {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--bg-lavender), var(--bg-mint));
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--spacing-md);
}

.inspiration-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.inspiration-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.inspiration-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.inspiration-card:hover img {
    transform: scale(1.1);
}

.inspiration-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.inspiration-card:hover .inspiration-overlay {
    transform: translateY(0);
}

.inspiration-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-color);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.inspiration-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.inspiration-author {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card:nth-child(2) .feature-icon { color: var(--accent-color); }
.feature-card:nth-child(3) .feature-icon { color: var(--craft-purple); }
.feature-card:nth-child(4) .feature-icon { color: var(--craft-orange); }

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* ===================================
   NEWSLETTER
   =================================== */
.newsletter {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    color: var(--white);
}

.newsletter-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.newsletter-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-md);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    border: none;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius-xl);
    font-weight: 700;
}

.newsletter-form button:hover {
    background: var(--text-dark);
    color: var(--white);
}

.newsletter-benefits {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.newsletter-benefits span {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
}

.newsletter-image {
    text-align: center;
}

.newsletter-image img {
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-main {
    padding: var(--spacing-xxl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
}

.footer-brand {
    padding-right: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.footer-logo-text {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-payments {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-payments img {
    height: 30px;
    opacity: 0.7;
}

/* ===================================
   QUICK VIEW MODAL
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-gallery {
    padding: var(--spacing-xl);
    background: var(--bg-light);
}

.modal-main-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

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

.modal-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
}

.modal-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-normal);
}

.modal-thumb.active,
.modal-thumb:hover {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--primary-color);
}

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

.modal-details {
    padding: var(--spacing-xl);
}

.modal-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.modal-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

.modal-original-price {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.modal-discount {
    padding: 5px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-desc {
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.modal-options {
    margin-bottom: var(--spacing-lg);
}

.option-group {
    margin-bottom: var(--spacing-md);
}

.option-label {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.option-colors {
    display: flex;
    gap: var(--spacing-sm);
}

.color-swatch {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-normal);
}

.color-swatch:hover,
.color-swatch.active {
    border-color: var(--text-dark);
    transform: scale(1.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.modal-meta span strong {
    color: var(--text-dark);
}

/* ===================================
   SHOP PAGE
   =================================== */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-lavender));
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23E91E63" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%2300BCD4" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23E91E63" opacity="0.1"/></svg>');
    background-size: 100px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

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

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

.breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
}

.page-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Shop Layout */
.shop-section {
    padding: var(--spacing-xxl) 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-xl);
}

/* Shop Sidebar */
.shop-sidebar {
    position: sticky;
    top: 160px;
    height: fit-content;
}

.filter-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--bg-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-title i {
    color: var(--primary-color);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.filter-item:hover {
    background: var(--bg-light);
}

.filter-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bg-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.filter-item.active .filter-checkbox {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.filter-label {
    flex: 1;
    font-size: 0.95rem;
}

.filter-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Price Range */
.price-range {
    padding: var(--spacing-md) 0;
}

.price-slider {
    position: relative;
    height: 6px;
    background: var(--bg-gray);
    border-radius: 3px;
    margin-bottom: var(--spacing-lg);
}

.price-slider-fill {
    position: absolute;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    left: 10%;
    right: 30%;
}

.price-inputs {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.price-input {
    flex: 1;
}

.price-input label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    display: block;
}

.price-input input {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
}

/* Color Filter */
.color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.color-filter {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-normal);
}

.color-filter:hover,
.color-filter.active {
    border-color: var(--text-dark);
    transform: scale(1.1);
}

/* Shop Main */
.shop-main {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.showing-results {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.sort-by {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sort-by label {
    font-weight: 600;
    font-size: 0.95rem;
}

.sort-by select {
    padding: 10px 35px 10px 15px;
    border-radius: var(--radius-md);
    border: 2px solid var(--bg-gray);
    font-weight: 500;
    appearance: none;
    background: var(--white) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M7 10l5 5 5-5H7z"/></svg>') right 10px center no-repeat;
    background-size: 20px;
    cursor: pointer;
}

.view-options {
    display: flex;
    gap: var(--spacing-xs);
}

.view-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
}

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

/* Products Grid */
.shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.shop-products.list-view {
    grid-template-columns: 1fr;
}

.shop-products.list-view .product-card {
    display: flex;
}

.shop-products.list-view .product-image {
    width: 250px;
    flex-shrink: 0;
}

.shop-products.list-view .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xxl);
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: var(--white);
}

/* ===================================
   PRODUCT DETAIL PAGE
   =================================== */
.product-detail {
    padding: 160px 0 var(--spacing-xxl);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 160px;
}

.main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    position: relative;
}

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

.image-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.image-zoom:hover {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-thumbs {
    display: flex;
    gap: var(--spacing-sm);
}

.thumb {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-normal);
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--primary-color);
}

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

/* Product Info */
.product-details {
    padding: var(--spacing-lg) 0;
}

.product-category-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.product-title {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--bg-gray);
}

.product-sku {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--craft-green);
    font-weight: 600;
}

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

.product-price-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

.price-original {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-save {
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-xl);
    font-weight: 600;
}

.product-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* Product Options */
.product-options {
    margin-bottom: var(--spacing-lg);
}

.option-row {
    margin-bottom: var(--spacing-lg);
}

.option-title {
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.option-title span {
    font-weight: 400;
    color: var(--text-medium);
}

.size-options {
    display: flex;
    gap: var(--spacing-sm);
}

.size-btn {
    padding: 10px 20px;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

/* Add to Cart Section */
.add-to-cart-section {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--bg-gray);
}

.add-cart-btn {
    flex: 1;
}

.wishlist-btn {
    width: 55px;
    height: 55px;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-medium);
}

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

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.share-section span {
    font-weight: 600;
}

.share-links {
    display: flex;
    gap: var(--spacing-sm);
}

.share-link {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
}

.share-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Product Tabs */
.product-tabs-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
}

.tab-link {
    padding: 15px 30px;
    background: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--text-medium);
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

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

.tab-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

/* Description Tab */
.description-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
}

.description-text h3 {
    margin-bottom: var(--spacing-md);
}

.description-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.description-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.description-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-medium);
}

.description-list i {
    color: var(--primary-color);
}

.description-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* Project Ideas Tab */
.project-ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: var(--spacing-lg);
}

.project-difficulty {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.project-meta {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Reviews Tab */
.reviews-summary {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
}

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

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

.rating-stars {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--craft-yellow);
    font-size: 1.5rem;
    margin: var(--spacing-md) 0;
}

.rating-count {
    color: var(--text-light);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.rating-bar span {
    width: 60px;
    font-size: 0.9rem;
}

.bar-track {
    flex: 1;
    height: 10px;
    background: var(--bg-gray);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--craft-yellow);
    border-radius: 5px;
}

.rating-bar small {
    width: 40px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.review-card {
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.reviewer-info {
    display: flex;
    gap: var(--spacing-md);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

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

.reviewer-name {
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

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

.review-rating {
    color: var(--craft-yellow);
}

.review-text {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.review-images {
    display: flex;
    gap: var(--spacing-sm);
}

.review-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--bg-gray);
}

.review-helpful span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--text-medium);
}

.helpful-btn:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-mint));
    text-align: center;
}

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

.about-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
}

.about-title span {
    color: var(--primary-color);
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
}

.about-story {
    padding: var(--spacing-xxl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-image-badge strong {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-image-badge span {
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Values Section */
.values-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-normal);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card:nth-child(2) .value-icon { color: var(--accent-color); }
.value-card:nth-child(3) .value-icon { color: var(--craft-purple); }

.value-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.value-desc {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xxl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

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

.team-name {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 160px 0 var(--spacing-xxl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    color: var(--white);
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.contact-item span {
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: var(--spacing-sm);
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

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

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrap h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Workshops Section */
.workshops-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-cream);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.workshop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.workshop-image {
    height: 200px;
    overflow: hidden;
}

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

.workshop-content {
    padding: var(--spacing-lg);
}

.workshop-date {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.workshop-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.workshop-desc {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* ===================================
   CART PAGE
   =================================== */
.cart-section {
    padding: 160px 0 var(--spacing-xxl);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-xxl);
}

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

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    align-items: center;
    border-bottom: 1px solid var(--bg-gray);
}

.cart-product {
    display: flex;
    gap: var(--spacing-md);
}

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-product-info h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.cart-product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.cart-product-info span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.cart-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cart-quantity button {
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-quantity button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cart-quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--bg-gray);
    border-radius: var(--radius-sm);
}

.cart-total {
    font-weight: 700;
    color: var(--primary-color);
}

.cart-remove {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.cart-remove:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 160px;
}

.summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.summary-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--bg-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.summary-row.total {
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--bg-gray);
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--primary-color);
}

.coupon-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.coupon-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
}

.coupon-form button {
    padding: 12px 20px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 700;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-color);
}

.cart-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cart-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.cart-feature i {
    color: var(--craft-green);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: var(--spacing-xxl);
}

.empty-cart i {
    font-size: 5rem;
    color: var(--bg-gray);
    margin-bottom: var(--spacing-lg);
}

.empty-cart h3 {
    margin-bottom: var(--spacing-md);
}

.empty-cart p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-shake {
    animation: shake 0.5s;
}

/* Scroll 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);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .inspiration-card:nth-child(1) {
        grid-column: span 2;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }

    .newsletter-benefits {
        justify-content: center;
    }

    .newsletter-image {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .top-bar {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .hero-float {
        display: none;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .kits-grid {
        grid-template-columns: 1fr;
    }

    .kit-card {
        flex-direction: column;
    }

    .kit-image {
        width: 100%;
        height: 200px;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-card:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .shop-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-toolbar {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        flex-wrap: wrap;
    }

    .tab-link {
        flex: 1;
        min-width: 150px;
    }

    .description-content {
        grid-template-columns: 1fr;
    }

    .project-ideas-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        text-align: center;
    }

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

    .cart-quantity {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-tabs {
        flex-direction: column;
        align-items: center;
    }

    .shop-products {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .newsletter,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}
