/* 
 * style.css - Central Design System for Style Time Corporation Frontend
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Sleek Harmonious Palette */
    --primary: #4f46e5;         /* Vibrant Indigo */
    --primary-dark: #3730a3;    /* Deep Indigo */
    --primary-light: #e0e7ff;   /* Soft Ice Blue */
    --accent: #d946ef;          /* Neon Violet/Magenta */
    --accent-dark: #a21caf;     /* Magenta Dark */
    --dark: #0f172a;            /* Rich Slate Black */
    --dark-muted: #475569;      /* Cool Gray */
    --light: #f8fafc;           /* Crisp Ice Gray */
    --white: #ffffff;
    --border: #e2e8f0;          /* Subtle Slate Outline */
    --border-hover: #cbd5e1;
    --success: #10b981;         /* Emerald Green */
    --error: #ef4444;           /* Coral Red */
    
    /* Typography Scale Tokens */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-6xl: 60px;
    
    /* Typography Weight Tokens */
    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    
    /* Responsive Spacing Tokens */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Glassmorphism & Accent Blurs */
    --blur-sm: 4px;
    --blur-md: 8px;
    --blur-lg: 16px;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Layout Tokens */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

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

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

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* DRY Shared Card Base Pattern */
.card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.25);
}

/* Header & Navbar Styles */
.site-header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.site-header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    height: 44px;
    width: auto;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 10px;
    color: var(--dark-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-muted);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--light);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
}

/* Cart Badge Badge Widget */
.cart-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.cart-badge:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* Mobile Navigation Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Main Body Section spacing */
main {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 120px 0;
    background: radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
    background-color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 20px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--dark-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    border: 1px solid var(--border);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-card img {
    border-radius: var(--radius-md);
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.stat-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.stat-item p {
    font-size: 12px;
    color: var(--dark-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Cards Section */
.section-header {
    margin-bottom: 48px;
    text-align: center;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--dark-muted);
    max-width: 600px;
    margin: 12px auto 0 auto;
    font-size: 16px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.category-card {
    height: 100%;
}

.category-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #cbd5e1;
}

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

.category-card:hover .category-img img {
    transform: scale(1.08);
}

.category-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card-desc {
    font-size: 13px;
    color: var(--dark-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.category-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.category-link svg {
    transition: var(--transition);
}

.category-card:hover .category-link svg {
    transform: translateX(4px);
}

/* Featured Products Grid */
.products-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Product Card design */
.product-card {
    background-color: var(--light);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

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

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

.product-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-sku {
    font-size: 10px;
    font-weight: 700;
    color: var(--dark-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.product-card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 11px;
    color: var(--dark-muted);
    margin-bottom: 20px;
    border-top: 1px dashed var(--border);
    padding-top: 12px;
}

.spec-val {
    font-weight: 600;
    color: var(--dark);
}

.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.product-card-actions a,
.product-card-actions button {
    flex: 1;
}

/* Active Category Layout Page */
.page-header {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-muted);
    padding: 8px 12px;
    border-radius: 6px;
}

.filter-list a:hover,
.filter-list a.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.filter-list .count-pill {
    font-size: 10px;
    font-weight: 800;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 10px;
}

/* Search Bar widget */
.search-form {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background-color: var(--light);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Detail Product View Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-main {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 480px;
}

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

.gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    border: 2px solid var(--border);
    cursor: pointer;
    overflow: hidden;
    background-color: var(--white);
}

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

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

.detail-info-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.detail-sku {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.detail-desc {
    color: var(--dark-muted);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.spec-table th,
.spec-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.spec-table th {
    font-weight: 700;
    color: var(--dark-muted);
    text-align: left;
    width: 140px;
}

.spec-table td {
    color: var(--dark);
    font-weight: 600;
}

/* Inquiry Form Page Styles */
.inquiry-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    padding: 60px 0;
}

.form-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background-color: var(--light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.cart-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: var(--light);
}

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

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.cart-item-sku {
    font-size: 10px;
    color: var(--dark-muted);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 4px;
}

.cart-item-remove:hover {
    background-color: rgba(239, 68, 68, 0.08);
}

/* Alert Notification Banner */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.08);
    color: var(--error);
    border-color: rgba(239, 68, 68, 0.2);
}

/* Blogs Grid section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

/* Reuses structural styling entirely from global .card component */

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #cbd5e1;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 11px;
    color: var(--dark-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-card-meta .category-badge {
    color: var(--primary);
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--dark-muted);
    margin-bottom: 20px;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.blog-card-link svg {
    transition: var(--transition);
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(4px);
}

/* Detail Blog View Layout */
.blog-detail-content {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 60px;
    max-width: 800px;
    margin: 60px auto;
    box-shadow: var(--shadow-sm);
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--dark-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.blog-detail-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.blog-detail-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    max-height: 480px;
}

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

.blog-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.blog-detail-body p {
    margin-bottom: 24px;
}

.blog-detail-body h2,
.blog-detail-body h3 {
    margin: 40px 0 20px 0;
}

/* Site Footer */
.site-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-col-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: var(--transition);
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
    display: inline-block;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 4px;
}

.footer-contact-text {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Pagination component */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--dark-muted);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

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

.pagination-item.disabled {
    pointer-events: none;
    opacity: 0.4;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-description,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 16px 0;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 24px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .shop-layout,
    .product-detail-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-grid,
    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .blog-detail-content {
        padding: 30px 20px;
    }
    
    .blog-detail-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .category-grid,
    .product-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}
