/* ===========================
   SHAMAA LANDING PAGE STYLES
   Premium Luxury Candle Brand
   =========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #faf8f5;
    color: #2d2d2d;
    line-height: 1.7;
    overflow-x: hidden;
}

[lang="ar"] body {
    font-family: 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* ===========================
   LANGUAGE SWITCHER
   =========================== */
.language-switcher {
    position: fixed;
    top: 15px;
    left: 30px;
    z-index: 1000;
}

.lang-toggle {
    background: #ffffff;
    color: #000000;
    border: 2px solid #e0dcd6;
    padding: 12px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lang-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ===========================
   AUTH & BASKET
   =========================== */
#auth-container{
    position:fixed;
    top:16px;
    right:86px;
    z-index:2000;

    display:flex;
    align-items:center;
}

.sign-link {
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    background-color: #5d1c34;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(93, 28, 52, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.sign-link:hover {
    background-color: #a77e46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 126, 70, 0.3);
}

.basket-icon {
    position: fixed;
    top: 12px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    z-index: 1000;
    color: #000000;
    transition: all 0.3s ease;
}

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

.profile{
    width:42px;
    height:42px;
    padding:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#000;
    border-radius:50%;

    box-sizing:border-box;
    cursor:pointer;
}

.profile span{
    font-weight:bold;
    color:#fff;
}

.profile-dropdown{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

#profile-icon{
    font-size:18px;
    color:#fff;
    cursor:pointer;
    line-height:1;
}

#dropdown-menu{
    display:none;
    position:absolute;
    top:25px;
    right:5px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 6px 15px rgba(0,0,0,.1);
    width:220px;
    padding:15px;
    z-index:1000;
    opacity:0;
    transform:translateY(-10px);
    transition:opacity .3s ease, transform .3s ease;
}

#dropdown-menu.show{
    display:block;
    opacity:1;
    transform:translateY(0);
}

#dropdown-menu p{
    margin:10px 0;
    color:#333;
    font-size:14px;
    line-height:1.5;
}

#dropdown-menu button{
    width:100%;
    padding:10px;
    border:none;
    background:#a88d79;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    border-radius:5px;
    transition:.3s;
}

#dropdown-menu button:hover{
    background:#5d1c34;
    transform:scale(1.05);
}

/* ===========================
   HEADER / NAV
   =========================== */
header {
    background-color: #5d1c34;
    text-align: center;
    box-shadow: 0 4px 20px rgba(93, 28, 52, 0.15);
    position: sticky;
    top: 0;
    z-index: 900;
    padding: 12px 0;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    gap: 40px;
}

nav p {
    margin: 0;
}

nav a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #a77e46;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #a77e46;
}

.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
    z-index:1002;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 50%, #efebe2 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a77e46;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #a77e46;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 126, 70, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 28, 52, 0.08) 0%, transparent 70%);
    top: 30%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation: pulse 5s ease-in-out infinite 1s;
}

.hero-image {
    max-width: 420px;
    width: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #5d1c34;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(93, 28, 52, 0.2);
}

.btn-primary:hover {
    background-color: #a77e46;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(167, 126, 70, 0.3);
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #5d1c34;
    border: 2px solid #5d1c34;
}

.btn-secondary:hover {
    background-color: #5d1c34;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 28, 52, 0.2);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

/* ===========================
   SECTION COMMON
   =========================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a77e46;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.hero-carousel{
    position:relative;
    width:620px;
    height:520px;
}

.carousel-item{

    position:absolute;

    top:50%;
    left:50%;

    width:320px;
    height:420px;

    object-fit:cover;

    border-radius:26px;

    border:3px solid #424242e6;

    background:white;

    box-shadow:
        0 30px 60px rgba(0,0,0,.18),
        0 8px 18px rgba(0,0,0,.08);

    transition:
        transform 1.15s cubic-bezier(.16,1,.3,1),
        opacity 1.15s ease,
        filter 1.15s ease;

    user-select:none;
}

.carousel-item.left{

    transform:
    translate(calc(-50% - 180px),-50%)
    scale(.74)
    rotate(-8deg);

    opacity:.55;

    z-index:1;

}

.carousel-item.center{

    transform:
    translate(-50%,-50%)
    scale(1);

    opacity:1;

    z-index:3;


}

.carousel-item.right{

    transform:
    translate(calc(-50% + 180px),-50%)
    scale(.74)
    rotate(8deg);

    opacity:.55;

    z-index:2;

}

/* ===========================
   FEATURED COLLECTION
   =========================== */
.featured-section {
    background-color: #ffffff;
}

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

.product-card {
    background: #faf8f5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    aspect-ratio: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-info {
    padding: 24px;
    text-align: center;
}

.product-card-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.product-card-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #a77e46;
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

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

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f0e8, #efebe2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #5d1c34;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #5d1c34, #a77e46);
}

.feature-card:hover .feature-icon i {
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.7;
}

/* ===========================
   OUR STORY
   =========================== */
.story-section {
    background-color: #faf8f5;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-content .section-label {
    display: block;
    margin-bottom: 8px;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content .btn {
    margin-top: 16px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
    background-color: #ffffff;
}

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

.testimonial-card {
    background: #faf8f5;
    border-radius: 16px;
    padding: 36px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #a77e46;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
}

/* ===========================
   INSTAGRAM GALLERY
   =========================== */
.instagram-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.instagram-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 28, 52, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay i {
    color: #ffffff;
    font-size: 1.8rem;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, #5d1c34 0%, #3d1222 100%);
    text-align: center;
}

.cta-section .section-container {
    padding: 100px 40px;
}

.cta-content h2 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-section .btn-primary {
    background-color: #a77e46;
    box-shadow: 0 4px 20px rgba(167, 126, 70, 0.4);
}

.cta-section .btn-primary:hover {
    background-color: #ffffff;
    color: #5d1c34;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    max-width: 80px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #a77e46;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #a77e46;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: #a77e46;
    font-size: 0.9rem;
    width: 20px;
}

.footer-contact-item a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #a77e46;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 40px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (max-width:1024px){

    /* Header */

    header .container{
        max-width:900px;
        padding:0 30px;
    }

    nav{
        gap:30px;
    }

    nav a{
        font-size:1.05rem;
    }

    #auth-container{
        top:25px;
        right:25px;
    }
    
    .sign-link{
        display:flex;
        align-items:center;
        justify-content:center;
        height:42px;
    }

    .basket-icon{
        top:12px;
        right:25px;
        font-size:34px;
    }

    .language-switcher{
        left:25px;
        top:12px;
    }

    .lang-toggle{
        width:46px;
        height:46px;
        font-size:14px;
    }


    /* Hero */

    .hero-section{
        min-height:75vh;
        padding:70px 0;
    }

    .hero-container{
        grid-template-columns:1fr 1fr;
        gap:45px;
        padding:0 35px;
        align-items:center;
    }

    .hero-title{
        font-size:2.7rem;
        line-height:1.2;
    }

    .hero-description{
        font-size:1rem;
        max-width:430px;
        margin-bottom:30px;
    }

    .hero-buttons{
        gap:14px;
    }

    .btn{
        padding:13px 30px;
        font-size:.9rem;
    }


    /* Carousel */

    .hero-carousel{
        width:340px;
        height:430px;
    }

    .carousel-item{
        width:240px;
        height:340px;
    }

    .carousel-item.left{
        transform:
        translate(calc(-50% - 90px),-50%)
        scale(.82)
        rotate(-8deg);
    }

    .carousel-item.center{
        transform:
        translate(-50%,-50%)
        scale(1);
    }

    .carousel-item.right{
        transform:
        translate(calc(-50% + 90px),-50%)
        scale(.82)
        rotate(8deg);
    }

    .hero-glow{
        width:300px;
        height:300px;
    }

    .hero-glow-2{
        width:220px;
        height:220px;
    }


    /* Sections */

    .section-container{
        padding:80px 35px;
    }

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

    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .story-grid{
        gap:45px;
    }

    .instagram-grid{
        grid-template-columns:repeat(3,1fr);
        gap:18px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */
@media (max-width:768px){

/* ================= HEADER ================= */

.menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    top:15px;
    right:20px;
    width:50px;
    height:50px;
    font-size:34px;
    color:#fff;
    cursor:pointer;
    z-index:2000;
}

#auth-container{
    position:fixed;
    top:16px;
    right:86px;
    z-index:2000;
}

.language-switcher{
    position:fixed;
    top:15px;
    left:15px !important;
    right:auto !important;
    z-index:2000;
}

.lang-toggle{
    width:52px;
    height:52px;
    font-size:16px;
}

.basket-icon{
    position:fixed;
    top:13px;
    right:82px;
    font-size:34px;
    z-index:2000;
}

header{
    padding:0;
}

header .container{
    height:80px;
}

header nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#5d1c34;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;

    max-height:0;
    overflow:hidden;

    transition:.35s ease;
}

header nav.active{
    max-height:90px;
    padding:18px 0;
}

header nav p{
    margin:0;
}

header nav a{
    font-size:16px;
    white-space:nowrap;
}

/* ================= HERO ================= */

.hero-section{
    padding:50px 0;
    min-height:auto;
}

.hero-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:40px;
    padding:0 20px;
}

.hero-image-wrapper{
    order:1;
}

.hero-content{
    order:2;
    max-width:100%;
}

.hero-tagline{
    padding:0;
}

.hero-tagline::before{
    display:none;
}

.hero-title{
    font-size:2rem;
    line-height:1.25;
    margin-bottom:20px;
}

.hero-description{
    font-size:16px;
    max-width:100%;
    margin:0 auto 30px;
}

.hero-buttons{
    justify-content:center;
    gap:15px;
}

.hero-buttons .btn{
    width:210px;
}

/* ================= CAROUSEL ================= */

.hero-carousel{
    width:280px;
    height:360px;
    margin:auto;
}

.carousel-item{
    width:200px;
    height:290px;
}

.carousel-item.left{
    transform:
    translate(calc(-50% - 70px),-50%)
    scale(.78)
    rotate(-8deg);
}

.carousel-item.center{
    transform:
    translate(-50%,-50%)
    scale(1);
}

.carousel-item.right{
    transform:
    translate(calc(-50% + 70px),-50%)
    scale(.78)
    rotate(8deg);
}

.hero-glow{
    width:250px;
    height:250px;
}

.hero-glow-2{
    width:180px;
    height:180px;
}

/* ================= SECTIONS ================= */

.section-container{
    padding:70px 20px;
}

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

.products-grid,
.features-grid,
.story-grid,
.testimonials-grid{
    grid-template-columns:1fr;
    gap:30px;
}

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

.story-content .section-title{
    text-align:center;
}

.instagram-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.cta-content h2{
    font-size:1.8rem;
}

.footer-container{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
}

.footer-logo{
    margin:auto;
}

.footer-brand p{
    max-width:100%;
}

.footer-contact-item{
    justify-content:center;
}

.footer-links a:hover{
    padding-left:0;
}

.btn{
    padding:13px 30px;
    font-size:.9rem;
}

.btn-large{
    padding:15px 38px;
}

}

@media (max-width: 480px) {

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

.hero-description{
    font-size:15px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.hero-buttons .btn{
    width:100%;
    max-width:240px;
}

.hero-carousel{
    width:240px;
    height:300px;
}

.carousel-item{
    width:175px;
    height:250px;
}

.carousel-item.left{
    transform:
    translate(calc(-50% - 55px),-50%)
    scale(.72)
    rotate(-8deg);
}

.carousel-item.right{
    transform:
    translate(calc(-50% + 55px),-50%)
    scale(.72)
    rotate(8deg);
}

.menu-toggle{
    font-size:30px;
}

.basket-icon{
    top:15px;   
    right:75px;
    font-size:30px;
}

.lang-toggle{
    width:48px;
    height:48px;
}
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .products-grid {
        max-width: 100%;
    }

    .features-grid {
        max-width: 100%;
    }
}

/* ===========================
   RTL ADJUSTMENTS
   =========================== */

[dir="rtl"] .hero-tagline {
    padding-left: 0;
    padding-right: 40px;
}

[dir="rtl"] .hero-tagline::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .story-content .section-title {
    text-align: right;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

[dir="rtl"] .footer-contact-item {
    flex-direction: row-reverse;
}

[dir="rtl"] #auth-container {
    right:30px;
    left:auto;
}

[dir="rtl"] .basket-icon{
    right:20px;
    left:auto;
}

/* ===========================
   FOOTER RTL
   =========================== */

[dir="rtl"] .footer {
    direction: rtl;
}

[dir="rtl"] .footer-container {
    direction: rtl;
}

[dir="rtl"] .footer-brand,
[dir="rtl"] .footer-links,
[dir="rtl"] .footer-contact {
    text-align: right;
}

[dir="rtl"] .footer-brand p {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .footer-links a {
    text-align: right;
}

[dir="rtl"] .footer-contact-item {
    flex-direction: row-reverse;
    justify-content: flex-end;
    text-align: right;
}

[dir="rtl"] .footer-contact-item i {
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .footer-links a:hover {
    padding-right: 5px;
    padding-left: 0;
}

[dir="rtl"] .footer-contact-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

[dir="rtl"] .phone-number {
    direction: ltr;
    unicode-bidi: isolate;
    text-align: left;
}

@media (max-width: 768px) {

    [dir="rtl"] .hero-tagline {
        padding-right: 0;
    }

    [dir="rtl"] .hero-tagline::before {
        display: none;
    }

    [dir="rtl"] .story-content .section-title {
        text-align: center;
    }

    [dir="rtl"] .language-switcher{
        left:15px;
        right:auto;
    }

    [dir="rtl"] #auth-container{
        right:82px;
        left:auto;
    }

    [dir="rtl"] .basket-icon{
        right:75px;
    }
}