/* ==================== VARIABLES & RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cdb2ba7c;
    --primary-dark: #ad687c00;
    --primary-light: #000000;
    --secondary-color: #F5EFEA;
    --accent-color: #D4A373;
    --text-dark: #2D2D2D;
    --text-light: #FFFFFF;
    --text-muted: #6B6B6B;
    --border-color: #C6A4B4;
    --bg-light: #FAFAFA;
    --success-color: #28A745;
    --error-color: #E74C3C;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #F4E3D7;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.1;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
      border: 1px solid #c198ab;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background-color: #7e1925;
    color: rgb(254, 250, 250);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    flex: 0 0 auto;
}

.logo-brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-brand-link:hover {
    transform: scale(1.05);
}

.brand-logo {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.brand-name {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}

.brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 40px;
    }

    .brand-main {
        font-size: 0.9rem;
    }

    .brand-sub {
        font-size: 0.6rem;
    }

    .logo-brand-link {
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 35px;
    }

    .brand-main {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .brand-sub {
        font-size: 0.55rem;
    }

    .logo-brand-link {
        gap: 0.5rem;
    }
}

.logo-text {
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

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

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 0 0 auto;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: rgb(255, 252, 252);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    width: 150px;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.nav-icon {
    position: relative;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
     color: rgba(126, 25, 37, 0.9);
    padding: 4rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    text-shadow: none;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 1.5rem 0;
    line-height: 1.2;
     color: rgba(126, 25, 37, 0.9);
     text-shadow: none;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1rem;
     color: rgba(126, 25, 37, 0.9);
}

    .hero-description {
        font-size: 1.1rem;
        margin: 2rem 0;
        line-height: 1.8;
        color: rgba(126, 25, 37, 0.9)!important;
        animation: slideInLeft 0.8s ease-out 0.2s both;
        text-shadow: none;
    }
    .hero-description {
    color: rgba(126, 25, 37, 0.9) !important;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: slideInLeft 0.8s ease-out 0.4s both;
     color: rgba(126, 25, 37, 0.9)!important;
     
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    animation: slideInRight 0.8s ease-out 0.3s both;
     color: rgba(126, 25, 37, 0.9);
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex: 0 0 auto;
}

.feature-item h4 {
color: rgba(126, 25, 37, 0.9);
    margin-bottom: 0.3rem;
}

.feature-item p {
 color: rgba(126, 25, 37, 0.9);
     font-size: 0.9rem;
}

/* ==================== SECTIONS ==================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #7e1925;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color:  #7e1925;;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.category-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #F0DCD3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 3rem;
}

.category-card h3 {
    padding: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    font-size: 1.3rem;
}

.category-card p {
    text-align: center;
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.explore-btn {
    display: block;
    padding: 1rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    transition: var(--transition);
}

.explore-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

/* ==================== CUSTOM PRODUCTS SECTION ==================== */
.custom-products-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    margin-top: 5rem;
}

.custom-products-section > * {
    max-width: 1400px;
    margin: 0 auto;
}

.custom-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.custom-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.custom-product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-image-wrapper {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #E8D5C4 0%, #F4E4D7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
     object-fit: contain;
}

.product-image-placeholder {
    display: contents;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    opacity: 0.6;
}

.product-image-placeholder p {
    font-size: 0.85rem;
    text-align: center;
}

.custom-product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
}

.product-category {
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.customization-options {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.option-tag {
    background-color: #E8F0FE;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.custom-product-card .btn {
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

/* ==================== FEATURED PRODUCTS SECTION ==================== */
.featured-products-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-category {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.product-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

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

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

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

/* ==================== TRUST SECTION ==================== */
.trust-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    margin-top: 5rem;
}

.trust-section > * {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

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

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
    z-index: 2000;
    pointer-events: none;
    max-width: 350px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast.success {
    background-color: var(--success-color);
}

.toast.error {
    background-color: var(--error-color);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .search-container {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

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

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

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .custom-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .search-input {
        width: 100px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-description {
        font-size: 1rem;
        margin: 1rem 0;
    }

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

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

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

    .product-image-wrapper {
        height: 200px;
    }

    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.view-all:hover {
    gap: 1rem;
}
/* ==================== HERO PRODUCTS MOCKUPS ==================== */
.hero-mockups {
    position: relative;
    height: 500px;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.mockup-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.mockup-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* T-SHIRT - LARGE, CENTER LEFT */
.mockup-tshirt {
    width: 150px;
    height: 200px;
    top: 50px;
    left: 0;
    z-index: 4;
}

/* PHONE CASE - CENTER */
.mockup-phone {
    width: 110px;
    height: 220px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mockup-phone:hover {
    transform: translateX(-50%) translateY(-10px);
}

/* BAG - RIGHT, TOP */
.mockup-bag {
    width: 130px;
    height: 150px;
    top: 0;
    right: 0;
    z-index: 2;
}

/* CUSHION - RIGHT, BOTTOM */
.mockup-cushion {
    width: 150px;
    height: 150px;
    bottom: 0;
    right: 20px;
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-mockups {
        height: 350px;
        margin-top: 1rem;
    }

    .mockup-tshirt {
        width: 130px;
        height: 170px;
        top: 30px;
    }

    .mockup-phone {
        width: 90px;
        height: 180px;
    }

    .mockup-bag {
        width: 110px;
        height: 130px;
    }

    .mockup-cushion {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .hero-mockups {
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mockup-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 120px;
        height: 150px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-mockups {
        height: 250px;
    }

    .mockup-item {
        width: 100px;
        height: 130px;
    }
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.product-image-placeholder {
    display: none;  /* Hide placeholder */
} 
/* ==================== HERO SECTION WITH BACKGROUND IMAGE ==================== */
/* ==================== HERO WITH VISIBLE BACKGROUND IMAGE ==================== */
.hero {
    background-image: 
        linear-gradient(135deg, rgba(139, 46, 60, 0.3), rgba(107, 31, 45, 0.3)),
        url('keychain-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    padding: 4rem 2rem;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    animation: fadeIn 0.8s ease-out;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    animation: slideInLeft 0.8s ease-out 0.2s both;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 1rem 0;
    animation: slideInLeft 0.8s ease-out 0.4s both;
    max-width: 90%;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 2rem;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem;
        min-height: auto;
        background-attachment: scroll;
    }

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

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 0.75rem;
    }
}
/* ==================== MOBILE FIRST - ENHANCED PERSPECTIVE ==================== */
/* ==================== MOBILE FIRST - ENHANCED PERSPECTIVE ==================== */

/* TABLET: 768px and below */
@media (max-width: 768px) {
    /* PRODUCTS GRID */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
        padding: 1rem !important;
    }

    /* PRODUCT CARDS */
    .product-card {
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08) !important;
    }

    .product-card:hover {
        box-shadow: 0 6px 20px rgba(139, 46, 60, 0.15) !important;
        transform: translateY(-8px) !important;
    }

    /* PRODUCT IMAGE */
    .product-image-wrapper {
        height: 180px !important;
        background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    }

    /* PRODUCT INFO */
    .product-info {
        padding: 1.2rem !important;
    }

    .product-name {
        font-size: 1rem !important;
        font-weight: 600;
        margin-bottom: 0.3rem !important;
    }

    .product-category {
        font-size: 0.8rem !important;
        opacity: 0.8;
    }

    .product-rating {
        margin-bottom: 0.8rem !important;
    }

    .product-price {
        margin-bottom: 1rem !important;
        gap: 0.6rem !important;
    }

    .price {
        font-size: 1.2rem !important;
        font-weight: 700;
    }

    .original-price {
        font-size: 0.9rem !important;
    }

    /* BUTTONS */
    .btn-small {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-small:active {
        transform: scale(0.95);
    }

    /* CUSTOM PRODUCTS */
    .custom-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
        padding: 1rem !important;
    }

    .custom-product-card {
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }

    .custom-product-card:hover {
        box-shadow: 0 6px 18px rgba(139, 46, 60, 0.12) !important;
    }

    .product-image-wrapper {
        height: 160px !important;
    }

    .custom-product-card h3 {
        padding: 1.2rem 1.2rem 0.3rem !important;
        font-size: 1rem !important;
    }

    .product-category {
        padding: 0 1.2rem !important;
        font-size: 0.8rem !important;
    }

    .customization-options {
        padding: 0.8rem 1.2rem !important;
    }

    .custom-product-card .btn {
        margin: 0 1.2rem 1.2rem !important;
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* MOBILE: 480px and below - OPTIMIZED */
@media (max-width: 480px) {
    /* PRODUCTS GRID */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0.5rem !important;
    }

    .featured-products-section {
        padding: 0 1rem !important;
    }

    /* PRODUCT CARDS */
    .product-card {
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    .product-card:hover {
        box-shadow: 0 5px 15px rgba(139, 46, 60, 0.12) !important;
        transform: translateY(-4px) !important;
    }

    /* PRODUCT IMAGE */
    .product-image-wrapper {
        height: 200px !important;
        background: linear-gradient(135deg, #f8f8f8 0%, #f2f2f2 100%);
    }

    .product-image {
        object-fit: cover;
    }

    /* PRODUCT BADGE */
    .product-badge {
        top: 0.8rem !important;
        right: 0.8rem !important;
        padding: 0.25rem 0.7rem !important;
        font-size: 0.65rem !important;
    }

    /* PRODUCT INFO */
    .product-info {
        padding: 1rem !important;
        gap: 0.3rem;
    }

    .product-name {
        font-size: 0.95rem !important;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 0.2rem !important;
    }

    .product-category {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
        opacity: 0.7;
    }

    .product-rating {
        margin-bottom: 0.6rem !important;
        font-size: 0.75rem !important;
    }

    .product-rating i {
        font-size: 0.8rem !important;
    }

    /* PRODUCT PRICE */
    .product-price {
        margin-bottom: 0.8rem !important;
        gap: 0.5rem !important;
        align-items: center;
    }

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

    .original-price {
        font-size: 0.8rem !important;
    }

    /* BUTTONS */
    .btn-small {
        padding: 0.65rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 6px;
        font-weight: 600;
        width: 100% !important;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .btn-small:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

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

    /* CUSTOM PRODUCTS GRID */
    .custom-products-section {
        padding: 3rem 1rem !important;
    }

    .custom-products-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
    }

    .custom-product-card {
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    .custom-product-card:hover {
        box-shadow: 0 4px 12px rgba(139, 46, 60, 0.1) !important;
        transform: translateY(-2px) !important;
    }

    .product-image-wrapper {
        height: 180px !important;
    }

    .custom-product-card h3 {
        padding: 1rem 1rem 0.3rem !important;
        font-size: 0.95rem !important;
    }

    .product-category {
        padding: 0 1rem !important;
        font-size: 0.75rem !important;
    }

    .customization-options {
        padding: 0.8rem 1rem !important;
        gap: 0.4rem !important;
    }

    .option-tag {
        padding: 0.25rem 0.6rem !important;
        font-size: 0.65rem !important;
    }

    .custom-product-card .btn {
        margin: 0 1rem 1rem !important;
        padding: 0.65rem 1rem !important;
        font-size: 0.8rem !important;
    }

    /* SECTION TITLES */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* IMPROVE TOUCH TARGETS */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* EXTRA SMALL PHONES: 320px and below */
@media (max-width: 380px) {
    .products-grid {
        gap: 0.8rem !important;
    }

    .product-name {
        font-size: 0.9rem !important;
    }

    .price {
        font-size: 1rem !important;
    }

    .btn-small {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.75rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }
}
