* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-dark: #1a1a1a;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;
    --color-accent: #8b0000;
    --font-primary: "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
}

body, html {
    direction: ltr;
    text-align: left;
}
body {
  font-family: var(--font-primary);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Default: Header is SOLID for all pages */
.header {
    background-color: var(--primary-yellow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out;
}

    /* Transparent only when .transparent class is added */
    .header.transparent {
        background-color: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    /* Solid state (default or when scrolled) */
    .header.solid {
        background-color: var(--primary-yellow);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
.header-container {
    /* display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 3rem;
    position: relative;
    direction: ltr;
    width: 100%;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: relative;
    direction: ltr;
    width: 100%;
}
/*h1, h2, h3, h4, h5, h6, p, span, div, a, li, td, th {
    direction: ltr !important;
    text-align: left !important;
}*/

/* Ensure forms are LTR */
input, textarea, select, button {
    direction: ltr !important;
    text-align: left !important;
}
.logo {
    /*  align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-white);
    width: 150px;
    text-align: center;
    margin: 0 auto;*/
    position: static; 
    transform: none;
    width: 150px;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
}

    /* Logo image */
    .logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.logo-text {
    font-size: 1.25rem;
    letter-spacing: 0;
    font-weight: 300;
}

.hamburger {
    /*position: absolute;
    right: 3rem;*/ /* Changed from left: 3rem to right: 3rem */
    /*left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;*/
    flex-shrink: 0; /* Prevent shrinking */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-black);
  transition: all 0.3s ease;
  display: block;
}

.hamburger:hover span {
  background-color: rgba(255, 255, 255, 0.7);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: fit-content;
    max-width: 90vw;
    height: 100vh;
    background-color: var(--color-black);
    color: var(--color-white);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
    opacity: 0.7;
}

    .mobile-nav.active {
        right: 0;
        left: auto;
    }

.close-btn {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    right: auto;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.close-btn:hover {
  opacity: 0.7;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 5rem;
    flex: 1;
    text-align: left;
}

    .mobile-nav-links li {
        margin-bottom: 2rem;
    }

    .mobile-nav-links a {
        color: var(--color-white);
        text-decoration: none;
        font-size: 1.1rem;
        letter-spacing: 0.1em;
        transition: opacity 0.3s;
        display: block;
        text-align: left;
    }

.mobile-nav-links a:hover {
  opacity: 0.7;
}

.mobile-nav-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--color-white);
}

.mobile-nav-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity 0.3s;
}

.icon-btn:hover {
  opacity: 0.7;
}

.vertical-slider {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-slide {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
}

.slider-slide.active {
  transform: translateY(0);
  z-index: 2;
}

.slider-slide.previous {
  transform: translateY(-100%);
  z-index: 0;
}

.slide-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.slide-text {
  flex: 1;
  max-width: 500px;
  animation: fadeInUp 1s ease-out;
}

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

.slide-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.slide-title {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-out;
}

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

.slide-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.btn-primary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 3rem; /* Changed from right */
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.slider-nav-btn {
  width: 2px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.slider-nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-white);
  transition: height 0.3s;
}

.slider-nav-btn.active::before {
  height: 100%;
}

.slider-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 50%; /* Changed from left */
    left: auto;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.pagination {
    direction: ltr;
    text-align: left;
}
.pagination-numbers {
    direction: ltr;
}

.page-content {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    margin-top:20px;
 
}

.featured {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 25px;
}

.featured-text {
    flex: 1;
    max-width: 800px;
}

.featured-title {
    font-size: 3rem;
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    letter-spacing: 0;
}

.featured-description {
    font-size: 1rem;
    font-family: var(--font-primary);
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 2rem;
    text-align:justify;
}
.shop-sidebar {
    text-align: left;
    direction: ltr;
}
.sidebar-list {
    padding-left: 0;
    text-align: left;
}
    .sidebar-list li {
        text-align: left;
    }
.checkbox-label {
    direction: ltr;
    text-align: left;
    display: flex;
    align-items: center;
}
.products-header {
    text-align: left;
}
.product-grid {
    direction: ltr;
}
.btn-secondary {
    padding: 12px 24px;
    border: 2px solid #cfcfcf;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
  /*  width: 200px;*/
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #000000;
    z-index: 1;
    font-family: var(--font-primary);
    display: block;

}

    .btn-secondary::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #ffd700;
        transition: height 0.3s ease;
        z-index: -1;
    }

    .btn-secondary:hover {
        color: #000000;
        transform: translate(-1px, -1px);
        box-shadow: 1px 1px 2px #6e6c6c;
    }

        .btn-secondary:hover::before {
            height: 100%;
        }

.featured-image {
    flex: 1;
    position: relative;
    padding: 3rem;
    border-radius: 4px;
}

    .featured-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.zoom-btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

    .zoom-btn:hover {
        transform: scale(1.1);
    }

.ambassador {
    background-color: white;
    padding: 6rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Center product details in slider ONLY */
.product-slider .product-details {
    text-align: center !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-slider .product-name {
    text-align: center !important;
    width: 100%;
}

.product-slider .product-spec {
    text-align: center !important;
    width: 100%;
}

.product-slider .product-link {
    text-align: center !important;
    width: 100%;
    margin-top: 0.5rem;
}
.ambassador-media {
    flex: 0 1 50%; /* Slightly reduced width, flexible */
}

.ambassador-content {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-direction: row;
    direction: ltr;
}

.ambassador-image {
    flex: 1;
}

    .ambassador-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.ambassador-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-slider-container {
    position: relative;
    width: 100%;
}

.product-slider-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.product-slider {
    position: relative;
    height: 300px; /* Fixed height for the entire slider */
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .product-slide.active {
        opacity: 1;
    }

.product-image-container {
    flex: 0 0 200px; /* Fixed width of 200px, not growing or shrinking */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
    height: 200px; /* Fixed height */
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px; /* Optional: add some padding */
}

.product-details {
    flex: 1; /* Take remaining space */
    text-align: left;
    padding: 0 1rem; /* Add some padding */
}

.product-name {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: (var(--font-primary));
}

.product-spec {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.product-link {
    color: var(--color-black);
    text-decoration: underline;
    font-size: 0.875rem;
    letter-spacing: 0;
    transition: color 0.3s;
}

    .product-link:hover {
        color: var(--color-accent);
    }

.product-nav {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered and close together */
    gap: 1rem; /* Small gap between elements */
    padding: 1rem 2rem;
}

.product-nav-btn {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

    .product-nav-btn:hover {
        background-color: var(--color-accent);
        color: var(--color-white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.product-count {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

.ambassador-text {
    display: flex;
    align-items: flex-end;
}

.ambassador-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: 0;
}

.collections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.collection-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

    .collection-item:hover img {
        transform: scale(1.05);
    }

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 3rem;
    color: var(--color-white);
    text-align: left;
    align-items: flex-start;
}

.collection-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.btn-tertiary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.collection-item:hover .btn-tertiary {
    opacity: 1;
    transform: translateY(0);
}

.btn-tertiary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Form Area */
.form-area {
    flex: 1;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

    .newsletter-form input[type="email"] {
        flex: 1;
        padding: 0.875rem 1rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: var(--font-primary);
        font-size: 0.9rem;
        background: var(--color-white);
        transition: border-color 0.3s;
        direction: ltr; /* Changed from rtl */
        text-align: left;
    }

        .newsletter-form input[type="email"]:focus {
            outline: none;
            border-color: var(--color-accent);
        }

.btn-submit {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    padding: 0.875rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .btn-submit:hover {
        background-color: var(--color-accent);
        border-color: var(--color-accent);
    }

/* Visually hidden for accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1.5rem;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-area {
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-submit {
        width: 100%;
    }
    .hamburger {
        right: 1rem;
        left: auto;
    }

    .mobile-nav {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }

        .mobile-nav.active {
            right: 0;
        }
}
.search-form {
    direction: ltr;
    text-align: left;
}
.search-input-wrapper {
    direction: ltr;
}
.search-input {
    text-align: left !important;
    direction: ltr !important;
}
.autocomplete-results {
    text-align: left;
    direction: ltr;
}

.search-input-group {
    direction: ltr;
}
.autocomplete-info {
    text-align: left;
}

.autocomplete-name, .autocomplete-details, .autocomplete-sku {
    text-align: left;
}

.footer {
    background-color: #cfcfcf;
    color: var(--color-white);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-title {
    color: #000000;
    font-size: 0.875rem;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    color: dimgray;
    
    text-align: left;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--color-white);
        }

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

    .social-links a {
        color: #858484;
        transition: opacity 0.3s;
    }

        .social-links a:hover {
            opacity: 0.7;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(56, 55, 55, 0.5);
    background-color: #f9f9f9;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

    .footer-legal a {
        color: rgba(56, 55, 55, 0.5);
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-legal a:hover {
            color: var(--color-white);
        }

/* Product Slider Styles */
/* Product Slider Styles */
.product-slider-container {
  position: relative;
  width: 100%;
}

.product-slider-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
    direction: ltr;
}

.product-slider {
  position: relative;
  height: 380px;
}

.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-slide.active {
  opacity: 1;
}

.product-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.product-image {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.product-details {
  flex: 0 0 auto;
  text-align: center;
  width: 100%;
}

.product-name {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-spec {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.product-link {
  color: var(--color-black);
  text-decoration: underline;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.product-link:hover {
  color: var(--color-accent);
}

.product-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--color-gray-light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-nav-btn {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-nav-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-count {
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 500;
}





@media (max-width: 1024px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .slide-title {
    font-size: 3rem;
  }

  .featured-content {
    flex-direction: column;
  }

  .ambassador-content {
    flex-direction: column;
  }

  .collections {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  
    .SelLang,
    header .SelLang,
    body .SelLang {
        top: 7px !important; /* Use !important as last resort */
        right: 15px !important;
        width: 25px !important;
        height: 25px !important;
    }
    


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

  .featured-title,
  .ambassador-title {
    font-size: 2rem;
  }

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

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

  .slider-nav {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: var(--color-white);
    overflow: hidden;
    margin:auto;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
    transition: all 0.3s ease;
     border: 1px solid rgba(0, 0, 0, 0.05); 
}

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

.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more {
    color: var(--color-white);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-white);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-card:hover .read-more {
    background-color: var(--color-white);
    color: var(--color-black);
}

.blog-content {
    padding: 2rem;
    text-align: left;
}

.blog-title {
    font-family: 'vazir';
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--color-black);
    letter-spacing: 0;
}

.blog-excerpt {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.blog-date {
    background-color: var(--color-gray-light);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.blog-category {
    color: var(--color-accent);
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 1.5rem;
    }

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

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

    .blog-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 3rem 1rem;
    }

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

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

.newsletter-section {
    padding: 4rem 3rem;
    background-color: #f8f8f8;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .newsletter-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    direction: ltr;
}

/* Social Area */
.social-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.newsletter-text h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    letter-spacing: 0;
    font-family: var(--font-primary);
    text-align: left;
}

.newsletter-text p {
    color: var(--color-gray);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    margin: 0;
    text-align: left;
}

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

.social-item {
    color: var(--color-gray);
    transition: all 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
}

    .social-item:hover {
        color: var(--color-accent);
        background-color: rgba(0, 0, 0, 0.05);
    }

    .social-item svg {
        width: 24px;
        height: 24px;
        display: block;
    }


.SelLang {
    /* position: fixed;
    top: 20px;
    left: 20px;
    right: auto;
    width: 30px;
    height: 30px;
    background-image: url('../img/Earth-01.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.4s ease;
    z-index: 1001;*/
    flex-shrink: 0; /* Prevent shrinking */
    width: 30px;
    height: 30px;
    background-image: url('../img/Earth-01.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.4s ease;
    z-index: 1001;
}

    .SelLang:hover {
        transform: rotate(5deg) scale(1.1);
    }


.menu {
    position: fixed;
    top: 20px;
    left: 100px; /* Changed from Right: 100px */
    right: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 0 25px rgba(0,0,0,0.15);
    width: 100px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

    .menu.active {
        left: 10px; /* Changed from right: 10px */
        right: auto;
        opacity: 1;
    }

    .menu a {
        display: block;
        padding: 10px 18px;
        text-decoration: none;
        color: #333;
        font-size: 15px;
        font-family: "ARIAL", cursive;
        text-align: left;
        border-bottom: 1px solid #eee;
        transition: background 0.2s ease;
    }

        .menu a:last-child {
            border-bottom: none;
        }

        .menu a:hover {
            background-color: #f5f5f5;
        }
.text-right {
    text-align: left !important;
}

.text-left {
    text-align: right !important;
}

.float-right {
    float: left !important;
}

.float-left {
    float: right !important;
}

.product-link {
    color: #f8f9fa;
    text-decoration: none;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
    border-radius: 0px;
    text-align:center !important;
}

.related-product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    text-align: right;
    transition: all 0.3s ease;
    overflow: hidden;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

@media (max-width: 767px) {
    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 2fr));
        gap: 10px;
    }
}
.related-product-card .product-image {
    padding: 1rem;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .related-product-card .product-image img {
        max-width: 100%;
        max-height: 180px;
        object-fit: contain;
    }