* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F7F5F2;
    color: #2B2B2B;
    line-height: 1.6;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(247, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: #1E1E1E;
    border-radius: 9999px;
    padding: 0.5rem;
}

.nav-dropdown-container {
    position: relative;
}

.nav-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background-color: transparent;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.nav-btn.active {
    background-color: black;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.dropdown-icon.rotate {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 200px;
    margin-top: 0.5rem;
    animation: dropdownSlide 0.3s ease-out;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    width: 100%;
    padding: 0.75rem 1.5rem;
    text-align: left;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f3f3f3;
}

/* ========== ANIMATIONS ========== */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dropdownSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-slide {
    animation: slideInFromLeft 1s ease-out;
}

.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding-top: 7rem;
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-banner {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
    background: linear-gradient(to right, #999, #aaa);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 4rem;
    padding-bottom: 7rem;
    z-index: 10;
    max-width: 950px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #F7F5F2;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #F7F5F2;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 450px;
}

/* Hero section button styling */
.hero-content .btn.btn-primary {
    background-color: #F7F5F2;
    color: #1E1E1E;
}

.hero-content .btn.btn-primary:hover {
    background-color: #E6DED4;
    color: #1E1E1E;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: white;
    color: black;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.1em;
    width: fit-content;
}

.btn-primary:hover {
    background-color: #2B2B2B;
    color: white;
}

.btn-secondary {
    background-color: #2B2B2B;
    color: white;
    font-weight: bold;
}

.btn-secondary:hover {
    background-color: black;
}

.btn-light {
    background-color: #F7F5F2;
    color: black;
}

.btn-light:hover {
    background-color: #2B2B2B;
    color: white;
}

.btn:active {
    transform: scale(0.98);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== SECTIONS ========== */
.routines-section,
.bestsellers-section,
.categories-section,
.community-section {
    padding: 4rem 2rem;
}

/* Routines section button styling */
.routines-section .btn.btn-secondary {
    padding: 1rem 1.3rem !important;
    font-weight: bold !important;
    background-color: #1E1E1E !important;
    color: #F7F5F2 !important;
}

.routines-section .btn.btn-secondary:hover {
    background-color: #000000 !important;
    color: #F7F5F2 !important;
}

/* Best-sellers section button styling */
.bestsellers-section .btn.btn-secondary {
    background-color: #1E1E1E !important;
    color: #F7F5F2 !important;
}

.bestsellers-section .btn.btn-secondary:hover {
    background-color: #000000 !important;
    color: #F7F5F2 !important;
}

/* Split banner button styling */
.split-banner .btn.btn-secondary {
    background-color: #1E1E1E !important;
    color: #F7F5F2 !important;
}

.split-banner .btn.btn-secondary:hover {
    background-color: #000000 !important;
    color: #F7F5F2 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E1E1E;
}

.section-title .font-light {
    font-weight: 300;
    font-family: 'Didot', 'Times New Roman', serif;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #000000;
    white-space: nowrap;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
    font-family: 'Didot', 'Times New Roman', serif;
}

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: #E6DED4;
    border-radius: 40px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 500px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    margin-bottom: -1.5rem;
    width: 110%;
    display: flex;
    justify-content: center;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -3.3rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.product-image-wrapper img {
    width: 100%;
    max-width: none;
    aspect-ratio: 0.9;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.product-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.7rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    flex-grow: 1;
    max-width: 250px;
    word-spacing: -1px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.product-card .btn {
    padding: 0.6rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    max-width: 260px;
    width: fit-content;
    border-radius: 25px;
    margin: 0 auto;
}

/* ========== BESTSELLERS ========== */
.bestsellers-section {
    padding: 4rem 2rem 5rem 2rem;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bestseller-card {
    background-color: #F7F5F2;
    border-radius: 60px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    min-height: 500px;
    cursor: pointer;
    border: 8px solid #E6DED4;
}

.bestseller-card .bestseller-inner {
    background-color: #E6DED4;
    border-radius: 40px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bestseller-card:hover {
    transform: translateY(-5px);
}

.bestseller-card:hover .bestseller-inner {
    transform: scale(1.02);
}

.bestseller-image {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 1.5rem;
    border: 2px solid black;
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bestseller-info {
    text-align: center;
}

.bestseller-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ========== SPLIT BANNER ========== */
.split-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 40px;
    border: 2px solid black;
    overflow: hidden;
    margin-top: 3rem;
}

.banner-left,
.banner-right {
    position: relative;
    height: 600px;
}

.banner-left img,
.banner-right img,
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    z-index: 10;
}

.banner-text {
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.banner-arabic {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    margin-top: 1.5rem;
}

.banner-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ========== CATEGORIES ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    z-index: 10;
    padding: 2rem;
}

.category-content {
    align-self: flex-start;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    text-align: left;
    letter-spacing: 0.05em;
}

.category-description {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    max-width: 300px;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card:hover {
    transform: translateY(-5px);
}

/* ========== COMMUNITY SECTION ========== */
.community-section {
    padding-bottom: 6rem;
}

.community-section .section-header {
    text-align: left;
}

.community-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.community-scroll::-webkit-scrollbar {
    display: none;
}

.video-container {
    flex-shrink: 0;
    width: 300px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #ddd;
    aspect-ratio: 9 / 16;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.control-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.control-btn svg {
    color: white;
}

.banner-video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-right:hover .banner-video-controls {
    opacity: 1;
}

.banner-control-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.banner-control-btn svg {
    color: #333;
}

.banner-video-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem 1rem 1rem;
    z-index: 15;
    opacity: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    transition: opacity 0.3s ease;
}

.banner-right:hover .banner-video-slider {
    opacity: 1;
}

.video-progress-slider {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 1px;
    border: none;
}

.video-progress-slider::-webkit-slider-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
    border: none;
}

.video-progress-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
}

.video-progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: none;
    border: none;
    margin-top: -5px;
}

.video-progress-slider::-moz-range-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
    border: none;
}

.video-progress-slider::-moz-range-progress {
    height: 2px;
    background: rgba(255, 255, 255, 1);
    border-radius: 1px;
}

.video-progress-slider::-moz-range-thumb {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: none;
    margin-top: -5px;
}

.video-progress-slider::-ms-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-color: transparent;
    color: transparent;
    border-radius: 1px;
}

.video-progress-slider::-ms-fill-lower {
    background: rgba(255, 255, 255, 1);
    border-radius: 1px;
}

.video-progress-slider::-ms-thumb {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: none;
}

.video-progress-slider:focus {
    outline: none;
}

.video-progress-slider:hover::-webkit-slider-thumb,
.video-progress-slider:active::-webkit-slider-thumb {
    background: white;
    box-shadow: none;
}

.video-progress-slider:hover::-moz-range-thumb,
.video-progress-slider:active::-moz-range-thumb {
    background: white;
    box-shadow: none;
}

.video-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border-radius: 8px;
    padding: 8px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 32px;
    height: 32px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M0,0 L32,0 L32,32 L0,32 Z M12,9 L12,23 L22,16 Z' fill='white' fill-rule='evenodd'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M0,0 L32,0 L32,32 L0,32 Z M12,9 L12,23 L22,16 Z' fill='white' fill-rule='evenodd'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.video-icon svg {
    display: none;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet screens */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .bestsellers-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* Mobile landscape and smaller tablets */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .logo-image {
        height: 45px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-section {
        padding-top: 8rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-banner {
        height: 500px;
        border-radius: 30px;
    }

    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        max-width: none;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        white-space: normal;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        min-height: 450px;
        padding: 1.5rem;
        border-radius: 30px;
    }

    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bestseller-card {
        min-height: 450px;
        border-radius: 50px;
    }

    .bestseller-name {
        font-size: 1.5rem;
    }

    .split-banner {
        grid-template-columns: 1fr;
        border-radius: 30px;
    }

    .banner-left,
    .banner-right {
        height: 400px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-arabic {
        font-size: 1rem;
    }

    .banner-overlay {
        padding: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        height: 500px;
        border-radius: 30px;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-description {
        font-size: 0.95rem;
    }

    .video-container {
        width: 280px;
    }

    .container {
        padding: 0 1rem;
    }

    .routines-section,
    .bestsellers-section,
    .categories-section,
    .community-section {
        padding: 3rem 1rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .logo-image {
        height: 40px;
    }

    .nav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .dropdown-icon {
        width: 14px;
        height: 14px;
    }

    .hero-section {
        padding-top: 9rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-banner {
        height: 450px;
        border-radius: 25px;
    }

    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.85rem 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .product-card {
        min-height: 400px;
        padding: 1.25rem;
        border-radius: 25px;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.65rem;
    }

    .product-card .btn {
        padding: 0.55rem 1.5rem;
        font-size: 0.7rem;
    }

    .bestseller-card {
        min-height: 400px;
        border-radius: 40px;
        padding: 1.25rem;
    }

    .bestseller-name {
        font-size: 1.25rem;
    }

    .split-banner {
        border-radius: 25px;
    }

    .banner-left,
    .banner-right {
        height: 350px;
    }

    .banner-title {
        font-size: 1.25rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-arabic {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .banner-overlay {
        padding: 1.5rem;
    }

    .banner-control-btn {
        width: 50px;
        height: 50px;
    }

    .category-card {
        height: 450px;
        border-radius: 25px;
    }

    .category-title {
        font-size: 1.75rem;
    }

    .category-description {
        font-size: 0.85rem;
        max-width: 220px;
    }

    .category-overlay {
        padding: 1.5rem;
    }

    .video-container {
        width: 250px;
    }

    .control-btn {
        width: 36px;
        height: 36px;
    }

    .control-btn svg {
        width: 18px;
        height: 18px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .routines-section,
    .bestsellers-section,
    .categories-section,
    .community-section {
        padding: 2.5rem 0.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-btn {
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
    }

    .video-container {
        width: 220px;
    }
}
