/* =====================================================
   NARIN MODA - Gelinlik Koleksiyonları
   Elegant Black & White Design
   ===================================================== */

/* CSS Variables */
:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #000000;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-cream: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.3;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    margin-left: 20px;
}

.top-bar a:hover {
    opacity: 0.8;
}

header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    filter: invert(1);
}

.logo-dark img {
    filter: none;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 72px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 60px;
    height: 1px;
    background: var(--primary-color);
    margin: 20px auto;
}

/* =====================================================
   COLLECTIONS GRID
   ===================================================== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(100%);
}

.collection-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    transform: translateY(0);
    opacity: 1;
}

.collection-overlay h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.collection-overlay p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.collection-overlay .btn {
    padding: 10px 25px;
    font-size: 11px;
}

/* =====================================================
   PRODUCTS GRID
   ===================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(100%);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    gap: 10px;
}

.product-card:hover .product-actions {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.product-actions .btn {
    padding: 12px 20px;
    font-size: 11px;
    white-space: nowrap;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.product-info .collection {
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info .code {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    filter: grayscale(100%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    z-index: -1;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.about-feature {
    text-align: center;
    padding: 25px;
    background: var(--white);
}

.about-feature .number {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--primary-color);
    line-height: 1;
}

.about-feature span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* =====================================================
   STORES SECTION
   ===================================================== */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.store-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.store-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.store-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 50%;
}

.store-card .icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
}

.store-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.store-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.store-card .phone {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--white);
    background: var(--white);
}

.footer-social a:hover svg {
    fill: var(--secondary-color);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* =====================================================
   PAGE HEADERS
   ===================================================== */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--white);
}

/* =====================================================
   FILTERS
   ===================================================== */
.filters-bar {
    background: var(--bg-light);
    padding: 20px 0;
    margin-bottom: 50px;
}

.filters-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters-left {
    display: flex;
    gap: 15px;
}

.filter-select {
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-family: var(--font-secondary);
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-toggle button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.view-toggle button.active,
.view-toggle button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.view-toggle button.active svg,
.view-toggle button:hover svg {
    stroke: var(--white);
}

.view-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-color);
}

/* =====================================================
   PRODUCT DETAIL
   ===================================================== */
.product-detail {
    padding: 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-thumbnails img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    opacity: 1;
    filter: grayscale(0%);
}

.product-detail-info h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.product-detail-info .product-code {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.product-detail-info .product-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.spec-item span:first-child {
    color: var(--text-light);
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    font-family: var(--font-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =====================================================
   BAYI LOGIN
   ===================================================== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 40px 20px;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.login-image {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1594552072238-5c4a09d0a1d8?w=800') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.login-image-content {
    text-align: center;
    color: var(--white);
}

.login-image-content img {
    height: 50px;
    margin-bottom: 30px;
}

.login-image-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.login-image-content p {
    opacity: 0.9;
    font-size: 15px;
}

.login-form-container {
    padding: 60px;
}

.login-form-container h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.login-form-container > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.form-footer a {
    color: var(--primary-color);
    font-size: 13px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* =====================================================
   BAYI PANEL
   ===================================================== */
.panel-layout {
    display: flex;
    min-height: 100vh;
}

.panel-sidebar {
    width: 280px;
    background: var(--secondary-color);
    color: var(--white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.panel-logo {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.panel-logo img {
    height: 35px;
}

.panel-user {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.panel-user-avatar {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.panel-user-info h4 {
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-secondary);
}

.panel-user-info span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.panel-nav {
    padding: 20px 0;
}

.panel-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.panel-nav-item:hover,
.panel-nav-item.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.panel-nav-item.active {
    border-left: 3px solid var(--white);
}

.panel-nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.panel-nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 15px 30px;
}

.panel-content {
    flex: 1;
    margin-left: 280px;
    background: var(--bg-light);
    min-height: 100vh;
}

.panel-header {
    background: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.panel-header h1 {
    font-size: 24px;
}

.panel-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.notification-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.notification-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-color);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--danger);
    color: var(--white);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.panel-body {
    padding: 30px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
}

.stat-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.stat-card h3 {
    font-size: 32px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.stat-card p {
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .trend {
    font-size: 12px;
    margin-top: 10px;
}

.stat-card .trend.up { color: var(--success); }
.stat-card .trend.down { color: var(--danger); }

/* Tables */
.table-container {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.table-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h3 {
    font-size: 18px;
    font-family: var(--font-secondary);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: var(--bg-light);
    padding: 15px 20px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-light);
}

.table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.table tr:hover {
    background: var(--bg-light);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #b38600;
}

.status-badge.approved {
    background: rgba(40, 167, 69, 0.15);
    color: var(--success);
}

.status-badge.shipped {
    background: rgba(23, 162, 184, 0.15);
    color: var(--info);
}

.status-badge.delivered {
    background: rgba(40, 167, 69, 0.15);
    color: var(--success);
}

.status-badge.cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: var(--danger);
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-actions button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.table-actions button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.table-actions button:hover svg {
    stroke: var(--white);
}

.table-actions svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-color);
}

/* Order Form */
.order-form-container {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
}

.order-form-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.order-form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.order-form-header p {
    color: var(--text-light);
}

.order-products {
    margin-bottom: 40px;
}

.order-product-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 25px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-product-item img {
    width: 100px;
    height: 130px;
    object-fit: cover;
    filter: grayscale(100%);
}

.order-product-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.order-product-info span {
    color: var(--text-light);
    font-size: 13px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--bg-light);
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 15px;
}

.size-selector {
    display: flex;
    gap: 8px;
}

.size-selector label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
}

.size-selector input {
    display: none;
}

.size-selector input:checked + label,
.size-selector label:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.remove-item {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remove-item:hover {
    background: var(--danger);
    border-color: var(--danger);
}

.remove-item:hover svg {
    stroke: var(--white);
}

.remove-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--danger);
}

.add-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border: 2px dashed var(--border-color);
    background: transparent;
    cursor: pointer;
    margin-top: 20px;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.add-product-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.add-product-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.order-summary {
    background: var(--bg-light);
    padding: 30px;
    margin-top: 30px;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.order-summary-row.total {
    border-bottom: none;
    font-size: 18px;
    font-weight: 600;
    padding-top: 20px;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.quick-action {
    background: var(--white);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.quick-action:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-action svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    margin-bottom: 15px;
}

.quick-action h4 {
    font-size: 15px;
    font-family: var(--font-secondary);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
}

.modal-close {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--danger);
}

.modal-close:hover svg {
    stroke: var(--white);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-color);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.pagination button:hover,
.pagination button.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .login-container {
        grid-template-columns: 1fr;
    }

    .login-image {
        display: none;
    }

    /* Panel sidebar - hidden on mobile, slides from left */
    .panel-sidebar {
        position: fixed !important;
        width: 280px !important;
        left: -280px !important;
        top: 0 !important;
        height: 100vh !important;
        z-index: 999 !important;
        transition: left 0.3s ease !important;
    }

    .panel-sidebar.active {
        left: 0 !important;
    }

    .panel-sidebar.active .panel-logo,
    .panel-sidebar.active .panel-user,
    .panel-sidebar.active .panel-nav-item span {
        display: flex !important;
    }

    .panel-sidebar.active .panel-nav-item {
        justify-content: flex-start !important;
        padding: 15px 30px !important;
    }

    .panel-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* Sidebar overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .sidebar-overlay.active {
        display: block !important;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: relative;
        top: auto;
    }

    .product-main-image {
        aspect-ratio: 4/5;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .order-product-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .order-product-item img {
        width: 80px;
        height: 100px;
    }

    .quantity-selector,
    .size-selector,
    .remove-item {
        grid-column: 2;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        padding: 0 10px;
    }

    .top-bar-content {
        justify-content: space-between;
    }

    .top-bar-content > span {
        font-size: 10px;
    }

    .top-bar-content > div {
        display: flex;
    }

    .top-bar a {
        margin-left: 10px;
        font-size: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .page-header {
        height: 300px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .filters-content {
        flex-direction: column;
        gap: 15px;
    }

    .filters-left {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-select {
        flex: 1;
        min-width: 140px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .panel-body {
        padding: 15px;
    }

    .table-container {
        overflow-x: auto;
    }

    .table {
        min-width: 600px;
    }

    .login-form-container {
        padding: 40px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding: 40px 0;
    }

    .product-detail-info h1 {
        font-size: 32px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .product-main-image {
        aspect-ratio: 3/4;
        max-height: 60vh;
    }

    .product-main-image img {
        object-position: top;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        padding: 0 8px;
    }

    .top-bar-content > span {
        font-size: 8px;
        max-width: 120px;
        line-height: 1.2;
    }

    .top-bar a {
        margin-left: 8px;
        font-size: 9px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .panel-content {
        margin-left: 0;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding: 30px 0;
    }

    .product-detail-info h1 {
        font-size: 26px;
    }

    .product-main-image {
        max-height: 50vh;
    }

    .spec-item {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

    .spec-item span:first-child {
        font-weight: 600;
    }
}

/* =====================================================
   MOBILE PANEL RESPONSIVE - HAMBURGER MENU
   ===================================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    min-height: 2px;
    background: #000000;
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Panel Header Adjustments */
@media (max-width: 992px) {
    .panel-header {
        padding: 15px 20px;
    }

    .panel-header h1 {
        font-size: 20px;
    }

    .panel-header-actions .btn {
        padding: 10px 15px;
        font-size: 11px;
    }

    .panel-header-actions .btn svg {
        margin-right: 5px !important;
    }
}

@media (max-width: 992px) {
    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }

    .mobile-menu-toggle span {
        display: block !important;
        width: 24px !important;
        height: 3px !important;
        min-height: 3px !important;
        background-color: #000000 !important;
    }

    /* Sidebar Mobile - Hidden by Default, Slide from Left */
    .panel-sidebar {
        position: fixed;
        width: 280px;
        left: -280px;
        top: 0;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s ease;
    }

    .panel-sidebar.active {
        left: 0 !important;
    }

    /* Show all sidebar elements when active */
    .panel-sidebar.active .panel-logo,
    .panel-sidebar.active .panel-user,
    .panel-sidebar.active .panel-nav-item span {
        display: flex !important;
    }

    .panel-sidebar.active .panel-nav-item {
        justify-content: flex-start;
        padding: 15px 30px;
    }

    /* Panel Content Full Width on Tablet/Mobile */
    .panel-content {
        margin-left: 0;
        width: 100%;
    }

    /* Sidebar Overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .sidebar-overlay.active {
        display: block !important;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle - Reinforce */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Full Sidebar on Mobile - Hidden by Default */
    .panel-sidebar {
        position: fixed;
        width: 280px;
        left: -280px;
        top: 0;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s ease;
        display: block;
    }

    .panel-sidebar.active {
        left: 0;
    }

    /* Show all sidebar elements on mobile when active */
    .panel-sidebar.active .panel-logo,
    .panel-sidebar.active .panel-user,
    .panel-sidebar.active .panel-nav-item span {
        display: flex;
    }

    .panel-sidebar.active .panel-nav-item {
        justify-content: flex-start;
        padding: 15px 30px;
    }

    /* Panel Content Full Width */
    .panel-content {
        margin-left: 0;
        width: 100%;
    }

    /* Panel Header Mobile */
    .panel-header {
        padding: 12px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .panel-header h1 {
        font-size: 18px;
        order: 2;
        flex: 1;
    }

    .mobile-menu-toggle {
        order: 1;
    }

    .panel-header-actions {
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }

    .panel-header-actions .btn {
        padding: 8px 12px;
        font-size: 10px;
    }

    /* Panel Body Mobile */
    .panel-body {
        padding: 15px;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card h3 {
        font-size: 22px;
    }

    .stat-card p {
        font-size: 10px;
    }

    .stat-card-icon {
        width: 40px;
        height: 40px;
    }

    .stat-card-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Quick Actions Mobile */
    .quick-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-action {
        padding: 15px;
    }

    .quick-action svg {
        width: 28px;
        height: 28px;
        margin-bottom: 10px;
    }

    .quick-action h4 {
        font-size: 12px;
    }

    /* Table Mobile - Card Style */
    .table-container {
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .table-header {
        background: var(--white);
        margin-bottom: 10px;
        box-shadow: var(--shadow);
    }

    .table {
        min-width: auto;
        display: block;
    }

    .table thead {
        display: none;
    }

    .table tbody {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .table tr {
        display: block;
        background: var(--white);
        padding: 15px;
        box-shadow: var(--shadow);
        border-radius: 0;
    }

    .table tr:hover {
        background: var(--white);
    }

    .table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 13px;
    }

    .table td:last-child {
        border-bottom: none;
        padding-top: 12px;
        justify-content: flex-end;
    }

    .table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        color: var(--text-light);
        margin-right: 15px;
    }

    .table-actions {
        width: 100%;
        justify-content: flex-end;
    }

    /* Modal Mobile */
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .modal {
        max-width: 100%;
        max-height: calc(100vh - 40px);
        margin: 0;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .modal-footer .btn {
        flex: 1;
        min-width: 120px;
    }

    /* Form Adjustments Mobile */
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .form-control {
        padding: 12px;
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Filter Row Mobile */
    .filter-row {
        flex-direction: column;
        gap: 10px;
    }

    .filter-row .search-box {
        min-width: 100%;
    }

    .filter-select {
        width: 100%;
    }

    /* Tabs Mobile */
    .tab-buttons {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .tab-btn {
        padding: 12px 15px;
        font-size: 12px;
    }

    /* Pagination Mobile */
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination button {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Stats Single Column on Very Small Screens */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .stat-card-header {
        margin-bottom: 0;
    }

    .stat-card h3 {
        font-size: 20px;
        margin-bottom: 0;
    }

    /* Quick Actions Single Column */
    .quick-actions {
        grid-template-columns: 1fr;
    }

    .quick-action {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .quick-action svg {
        margin-bottom: 0;
    }

    /* Panel Header Extra Small */
    .panel-header h1 {
        font-size: 16px;
    }

    .panel-header-actions {
        justify-content: center;
    }

    .panel-header-actions .btn {
        font-size: 9px;
        padding: 8px 10px;
    }

    /* Table Actions Stacked */
    .table-actions button {
        width: 36px;
        height: 36px;
    }

    /* Modal Footer Stacked Buttons */
    .modal-footer {
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.d-flex { display: flex; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.bg-white { background: var(--white); }
.bg-light { background: var(--bg-light); }
.bg-cream { background: var(--bg-cream); }
.shadow { box-shadow: var(--shadow); }
