@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Poppins:wght@300;500&display=swap');
       /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;

}
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
/* Navigation */
.main-nav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease, position 0.3s ease;
    padding: 10px 0;
}

.sticky-nav {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    transition: top 0.3s, background-color 0.3s;
}
.sticky-nav .nav-item img{
    filter: none;
}
.sticky-nav .nav-icons img {
    filter: brightness(0); /* Ensure icons are visible (dark icons for sticky nav) */
    transition: transform 0.2s ease, filter 0.3s ease; /* Smooth hover and color transition */
}

.sticky-nav .nav-icons img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.nav-icons {
    display: flex;
    gap: 20px; /* Adjust spacing between icons */
    align-items: center; /* Align icons vertically */
}

.nav-icons img {
    width: 24px; /* Set consistent width */
    height: 24px; /* Set consistent height */
    object-fit: contain; /* Maintain aspect ratio */
    filter: brightness(0) invert(1); /* Ensure visibility (white icons) */
    transition: transform 0.2s ease; /* Add smooth hover effect */
}

.nav-icons img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Layout adjustments */
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 20px 0px 0px 0px;
}

/* Logo on the left */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
}

.logo-z {
  font-family: 'Cinzel', serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  color: #d9afa5;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-size: 1.2rem;
}
/* Nav list centered */
.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto; /* Push nav list to the right */
    align-items: center; /* Align items vertically */
    padding: 0;
    position: relative;
}

/* Icon size and alignment */
.nav-item img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    object-fit: contain;
    color: white;
    filter: brightness(0) invert(1);
}

/* Optional: Add hover effect */
.nav-item a:hover img {
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}
/* Nav items */
.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item a:hover {
    color: #ccc;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Sticky state changes link color for visibility */
.sticky-nav .nav-item a {
    color: #333;
}

.sticky-nav .logo-z {
  font-family: 'Cinzel', serif;
  color: black;
  font-weight: 700;
  font-size: 2.5rem;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-item {
    font-weight: 500;
}

/* Hero slider styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}

.hero-dot.active {
    background: #fff;
    border-color: #d9afa5;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow-left { left: 30px; }
.hero-arrow-right { right: 30px; }

.hero-arrow:hover {
    background: rgba(0,0,0,0.6);
}

/* Remove old .hero section background and height */
.hero, .hero-content {
    background: none;
    height: auto;
    /* ...existing code... */
}

/* Responsive adjustments for slider */
@media (max-width: 1024px) {
    .hero-slider, .hero-slide {
        height: 60vh;
        min-height: 400px;
    }
}
@media (max-width: 768px) {
    .hero-slider, .hero-slide {
        height: 70vw;
        min-height: 340px;
        max-height: 90vw;
        margin-top: 0; /* Move hero to the very top */
    }
    .hero-slide {
        position: absolute;
        min-height: 340px;
        height: 100%;
        width: 100vw;
        left: 0;
        right: 0;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
        background-size: cover !important;
        background-position: center !important;
    }
    .hero-content {
        padding: 18px 16px;
        max-width: 90vw;
        background: rgba(0,0,0,0.50);
        border-radius: 16px;
        margin: 0 auto;
        box-shadow: 0 4px 24px rgba(0,0,0,0.10);
        position: relative;
        z-index: 2;
        text-align: center;
    }
    .hero-title {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .hero-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 20px;
    }
    .hero-arrow {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
        top: 50%;
        bottom: unset;
        transform: translateY(-50%);
    }
    .hero-arrow-left { left: 10px; }
    .hero-arrow-right { right: 10px; }
    .hero-slider-controls {
        bottom: 10px;
        gap: 8px;
    }
}
@media (max-width: 600px) {
    .hero-slider, .hero-slide {
        height: 90vw;
        min-height: 260px;
        max-height: 100vw;
        margin-top: 0; /* Move hero to the very top */
    }
    .hero-slide {
        min-height: 260px;
        height: 100%;
        width: 100vw;
        left: 0;
        right: 0;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
        background-size: cover !important;
        background-position: center !important;
    }
    .hero-content {
        padding: 12px 6px;
        border-radius: 12px;
        margin: 0 auto;
        background: rgba(0,0,0,0.60);
        box-shadow: 0 2px 12px rgba(0,0,0,0.12);
        max-width: 96vw;
        text-align: center;
    }
    .hero-title {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .hero-text {
        font-size: 11px;
        margin-bottom: 6px;
    }
    .btn {
        padding: 7px 12px;
        font-size: 11px;
        border-radius: 14px;
    }
    .hero-arrow {
        font-size: 1.1rem;
        width: 24px;
        height: 24px;
        top: 50%;
        bottom: unset;
        transform: translateY(-50%);
    }
    .hero-slider-controls {
        bottom: 4px;
        gap: 5px;
    }
}

/* Ensure hero-slide background covers the whole area on mobile */
.hero-slide {
    background-size: cover !important;
    background-position: center !important;
    width: 100vw;
    left: 0;
    right: 0;
}

/* Hero section */
.hero {
    background-image: url("../resources/img/hero_img4.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the left */
    text-align: left; /* Align text to the left */
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    color: white;
}

.hero-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #333;
}

.categories-section {
    text-align: center;
    align-items: center;
    padding: 60px;
    margin: 20px;
    background-color: #f5f6fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
.category-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.category-image-wrapper {
  width: 170px;
  height: 170px;
  border-radius: 50%;             /* Circular frame */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;               /* Keeps the image contained */
  background-color: white;        /* Optional: background inside circle */
  margin-bottom: 12px;
}

.category-image {
  width: 100px;
  height: 100px;
  object-fit: contain;  
  transition: 0.5s;          /* Fit entire image inside */
}

.category-name {
    margin-top: 12px;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    position: static; /* Removes absolute positioning */
    text-shadow: none;
}

.category-card:hover .category-image {
    transform: scale(0.8);
}

/* Featured products */
.products-section {
    padding: 40px 0 60px;
    background-color: #f9f9f9;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.tabs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tab {
    cursor: pointer;
    padding: 5px 0;
    position: relative;
}

.tab.active {
    font-weight: bold;
}

.tab.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #777;
    font-size: 14px;
    margin-bottom: 5px;
}

.product-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.product-price {
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

/* Banner section */
.banner-section {
    padding: 60px 0;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #777;
}

.banner-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-description {
    margin-bottom: 30px;
}

.banner-image {
    flex: 1;
    min-width: 300px;
}

.banner-image img {
    width: 100%;
    border-radius: 10px;
}

/* Brands section */
.brands-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-logo {
    max-width: 60px;
    max-height: 60px;
    opacity: 0.8;
    transition: all 0.2s;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
    padding: 6px;
    object-fit: contain;
}

.brand-logo:hover {
    opacity: 1;
    background: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transform: scale(1.08);
}

.brand-logo-white-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    padding: 6px;
    box-sizing: border-box;
    box-shadow: none;
    opacity: 0.8;
    transition: all 0.2s;
}
.brand-logo-white-bg:hover {
    opacity: 1;
    background: #444;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transform: scale(1.08);
}

/* Blog section */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-weight: bold;
    color: #000;
    display: inline-block;
    position: relative;
}

.read-more:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: all 0.3s;
}

.read-more:hover:after {
    width: 0;
}

/* Newsletter section */
.newsletter-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.newsletter-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.newsletter-text {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex-grow: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-right: -20px;
}

.newsletter-btn {
    padding: 15px 30px;
    background-color: #000;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 10px;
    min-width: 150px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    color: #aaa;
}

.footer-contact div {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding: 20px 0;
    color: #aaa;
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background-color: #444;
    border-radius: 4px;
}

/* Mobile nav menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    z-index: 1500; /* Lower than sticky-nav */
    padding: 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-list {
    margin-top: 60px;
    padding: 0;
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.mobile-nav-item a {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.mobile-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.mobile-icons img {
    width: 30px;
    height: 30px;
}

/* Dropdown menu */
.profile-dropdown {
    position: relative;
}

.profile-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

.profile-dropdown .dropdown-menu li {
    list-style: none;
}

.profile-dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.profile-dropdown .dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

.profile-dropdown:hover .dropdown-menu,
.profile-dropdown:focus-within .dropdown-menu {
    display: block;
}

/* Media Queries for Responsiveness */

/* Tablet */
@media (max-width: 1024px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        padding: 20px;
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo {
        align-self: center;
        margin: 0 auto;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .nav-list {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 12px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .mobile-nav-list {
        padding: 0;
    }

    .hero-content {
        padding: 10px;
        max-width: 100%;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-image img {
        max-width: 100%;
    }
}

.blog-slider-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.blog-slider {
    min-height: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px 20px 20px 20px;
    position: relative;
    overflow: hidden;
}

.blog-arrow {
    background: rgba(0,0,0,0.05);
    border: none;
    color: #333;
    font-size: 2rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.blog-arrow:hover {
    background: #d9afa5;
    color: #fff;
}

/* --- HERO SLIDER MOBILE PORTRAIT FIX --- */
@media (max-width: 768px) {
    .hero-slider, .hero-slide {
        height: 70vw;
        min-height: 340px;
        max-height: 90vw;
        margin-top: 0; /* Move hero to the very top */
    }
    .hero-slide {
        position: absolute;
        min-height: 340px;
        height: 100%;
        width: 100vw;
        left: 0;
        right: 0;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
        background-size: cover !important;
        background-position: center !important;
    }
    .hero-content {
        padding: 18px 16px;
        max-width: 90vw;
        background: rgba(0,0,0,0.50);
        border-radius: 16px;
        margin: 0 auto;
        box-shadow: 0 4px 24px rgba(0,0,0,0.10);
        position: relative;
        z-index: 2;
        text-align: center;
    }
    .hero-title {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .hero-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 20px;
    }
    .hero-arrow {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
        top: 50%;
        bottom: unset;
        transform: translateY(-50%);
    }
    .hero-arrow-left { left: 10px; }
    .hero-arrow-right { right: 10px; }
    .hero-slider-controls {
        bottom: 10px;
        gap: 8px;
    }
}
@media (max-width: 600px) {
    .hero-slider, .hero-slide {
        height: 90vw;
        min-height: 260px;
        max-height: 100vw;
        margin-top: 0; /* Move hero to the very top */
    }
    .hero_slide {
        min-height: 260px;
        height: 100%;
        width: 100vw;
        left: 0;
        right: 0;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
        background-size: cover !important;
        background-position: center !important;
    }
    .hero-content {
        padding: 12px 6px;
        border-radius: 12px;
        margin: 0 auto;
        background: rgba(0,0,0,0.60);
        box-shadow: 0 2px 12px rgba(0,0,0,0.12);
        max-width: 96vw;
        text-align: center;
    }
    .hero-title {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .hero-text {
        font-size: 11px;
        margin-bottom: 6px;
    }
    .btn {
        padding: 7px 12px;
        font-size: 11px;
        border-radius: 14px;
    }
    .hero-arrow {
        font-size: 1.1rem;
        width: 24px;
        height: 24px;
        top: 50%;
        bottom: unset;
        transform: translateY(-50%);
    }
    .hero-slider-controls {
        bottom: 4px;
        gap: 5px;
    }
}
