/* ===================================
   LARYOH FASHION - MODERN UI STYLES
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --navy: #2c3e50;
    --forest: #27ae60;
    --font-heading: 'Inter', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
/* Header Styles */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

/* Actually, to match the image precisely where Laryoh is noticeably spaced from left edge but seemingly centered in its own visual block, and Nav is far right.
   Let's use a cleaner approach: 
   - Container with flex-between.
   - Logo gets specific left margin/padding if needed. 
   - Nav items clustered. */

.header-transparent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 10%;
    /* More balanced desktop padding */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -1px;
}

nav {
    justify-self: end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    /* Wider gap like image */
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #4b5563;
    /* Gray-600 */
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

nav a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsive Media Query */
@media (max-width: 900px) {
    .header-transparent {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 50px !important;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem;
        transition: right 0.4s ease;
        z-index: 1001;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    nav a {
        font-size: 1.2rem;
    }

    /* Hamburger Animation when Active */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-main {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Marquee Section - OLD STYLE (keeping for reference) */
.marquee-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 3rem;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   TRENDING OFFERS SECTION - NEW DESIGN
   =================================== */

.offers-modern {
    padding: 5rem 5%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.offers-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.offers-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.offers-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.offers-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Offers Grid - Bento Box Style */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 400px;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.offer-card:hover::before {
    opacity: 0.9;
}

.offer-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .offer-card-image {
    transform: scale(1.1);
}

.offer-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.offer-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.offer-description {
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.offer-card:hover .offer-description {
    opacity: 1;
    transform: translateY(0);
}

.btn-offer {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.offer-card:hover .btn-offer {
    opacity: 1;
    transform: translateY(0);
}

.btn-offer:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Gradient Variants for Cards */
.offer-card.gradient-1::before {
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.9) 100%);
}

.offer-card.gradient-2::before {
    background: linear-gradient(180deg, transparent 0%, rgba(240, 147, 251, 0.9) 100%);
}

.offer-card.gradient-3::before {
    background: linear-gradient(180deg, transparent 0%, rgba(79, 172, 254, 0.9) 100%);
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.offer-card:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.offer-card:nth-child(2) {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.offer-card:nth-child(3) {
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Section Products (Original Collection) */
.section-products {
    padding: 5rem 5%;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Offer Badge */
.card-badge-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Categories Section */
.section-categories {
    padding: 5rem 5%;
    background: var(--bg-light);
    display: flex;
    gap: 3rem;
}

.category-sidebar {
    flex: 0 0 250px;
}

.category-sidebar h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.category-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
}

.cat-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.cat-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Featured Grid Section */
.section-featured-grid {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.feat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.feat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feat-card:hover img {
    transform: scale(1.1);
}

.feat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    color: white;
}

.feat-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feat-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-explore {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
/* Footer */
footer {
    background: #000000;
    color: #ffffff;
    padding: 5rem 5% 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-brand p {
    color: #a3a3a3;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #a3a3a3;
    font-size: 0.95rem;
}

.contact-info-item i {
    margin-top: 0.2rem;
    color: #737373;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #262626;
    color: #737373;
    font-size: 0.9rem;
}

.footer-bottom .copyright {
    color: #737373;
}

.footer-bottom .copyright strong {
    color: #e74c3c;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #737373;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* ===================================
   TRENDING OFFERS SECTION - CLEAN CARD DESIGN
   =================================== */

.trending-offers-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.container-offers {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offers-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.offers-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.offers-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.offers-scroll-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.offer-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.offer-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.offer-image-box {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #f8f9fa;
}

.offer-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-item:hover .offer-image-box img {
    transform: scale(1.08);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.5rem;
}

.offer-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.offer-tag.limited {
    background: rgba(231, 76, 60, 0.9);
}

.offer-tag.bestseller {
    background: rgba(155, 89, 182, 0.9);
}

.offer-tag.exclusive {
    background: rgba(52, 152, 219, 0.9);
}

.offer-details {
    padding: 1.8rem;
    background: #ffffff;
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.offer-price-tag {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1.2rem;
}

.offer-btn {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.offer-btn:hover {
    background: #ffffff;
    color: #2c3e50;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .offers-header h2 {
        font-size: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .trending-offers-section {
        padding: 3rem 0;
    }

    .offers-main-title {
        font-size: 2rem;
    }

    .offers-scroll-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-image-box {
        height: 320px;
    }

    .section-categories {
        flex-direction: column;
    }

    .category-sidebar {
        flex: 1;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .offers-scroll-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ===================================
   CLEAN OFFERS SECTION - MINIMALIST DESIGN
   =================================== */

.offers-section-clean {
    padding: 60px 0;
    background: #fafafa;
}

.offers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-heading p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.offers-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.clean-offer-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.clean-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.clean-offer-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Badge Styles */
.card-image-wrapper span[class^="badge-"] {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 2;
}

.badge-limited {
    background: #e74c3c;
}

.badge-bestseller {
    background: #9b59b6;
}

.badge-exclusive {
    background: #3498db;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price-box {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: 500;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

.clean-btn {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.clean-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

/* Clean Offers Responsive */
@media (max-width: 768px) {
    .offers-section-clean {
        padding: 40px 0;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .offers-grid-clean {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-image-wrapper {
        height: 280px;
    }

    .card-content {
        padding: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .offers-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ===================================
   RESPONSIVE ADJUSTMENTS (Detailed Mobile Optimization)
   =================================== */

@media (max-width: 900px) {

    /* Hero Section */
    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-main {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Grids */
    .offers-grid,
    .product-grid,
    .category-grid,
    .section-featured-grid,
    .offers-scroll-container,
    .offers-grid-clean {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Padding for sections */
    .offers-modern,
    .section-products,
    .section-categories,
    .section-featured-grid,
    .trending-offers-section,
    .offers-section-clean {
        padding: 3rem 1.5rem;
    }

    /* Category Layout */
    .section-categories {
        flex-direction: column;
        gap: 2rem;
    }

    .category-sidebar {
        flex: auto;
        text-align: center;
        margin-bottom: 1rem;
    }

    .category-sidebar h2 {
        font-size: 2.2rem;
    }

    /* Footer */
    .footer-content {
        display: flex;
        /* Override grid */
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-links,
    .footer-brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .contact-info-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-transparent {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Product Cards Mobile Optimization */
    .product-image-wrapper,
    .card-image-wrapper,
    .offer-image-box,
    .offer-card {
        height: 280px;
        /* Reduced height for mobile */
    }

    .product-card,
    .clean-offer-card,
    .offer-item {
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
        /* Prevent full width stretching if ugly */
    }
}

/* Fix for Offer Badge Overlap */
.card-badge-offer {
    position: absolute;
    top: 10px;
    left: 10px;
    right: auto !important;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 15;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* Ensure Maternity Badge stacks or respects if present (adjust if needed) */
.maternity-badge+.card-badge-offer {
    top: 50px;
    /* Push down if both exist, though DOM order matters */
}