
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --gray-color: #666666;
    --gray-light: #999999;
    --white-color: #ffffff;
    --accent-color: #0ea5e9;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    --border-radius: 8px;
    --header-height: 120px;
    --navbar-height: 70px;
  --cart-width: 400px;
  --primary-color: #2563eb;
  --bg-card: #ffffff;
  --text-main: #1f2937;
  --border-color: #e5e7eb;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding:0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
  input:focus {
    font-size: 16px;
  }
}

input, 
textarea, 
select {
  font-size: 16px;
}

.scroll-container {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.carousel-image {
    width: 300px;
    transition: all 0.8s ease-out;
    opacity: 0;
}

.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

.carousel-image.show {
    opacity: 1;
    transform: translateX(0);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white-color);
    box-shadow: var(--shadow);
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-promo {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
    color: var(--white-color);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.header-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-icon {
    font-size: 1.2rem;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.promo-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.promo-text strong {
    font-weight: 700;
    color: var(--white-color);
}

.promo-divider {
    margin: 0 0.8rem;
    opacity: 0.5;
}

.navbar {
    background: var(--white-color);
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    gap: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; 
    color: var(--dark-color);
    letter-spacing: 2px;
    margin-top: 3px;
}

.logo h1 span {
    color: black;
    transition: all 0.3s ease;
}

.logo:hover h1 span {
    color: var(--dark-color);
    -webkit-text-stroke: 0.1px var(--dark-color);
}

#product-search {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
    padding: 12px 16px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 20px 20px;
    transition: all 0.2s ease;
    outline: none;
}

#product-search:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

#product-search::placeholder {
    color: #aaa;
    font-weight: 400;
}

@media (max-width: 768px) {
    #product-search {
        max-width: 100%;
        margin: 1.5rem auto;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #product-search {
        padding: 10px 14px 10px 40px;
        font-size: 0.85rem;
        background-position: 12px center;
        background-size: 18px 18px;
    }
}

.logo-wave {
    width: 100%;
    height: 6px;
    opacity: 0.6;
    color: var(--gray-color);
}

.logo-wave svg {
    width: 100%;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin-top: 8px;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative; 
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; 
    bottom: 0;
    left: 0;
    background-color: var(--dark-color);
    transition: width 0.3s ease;
border-radius: 10px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    background: none;
    border: none;
    color: var(--dark-color);
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.action-btn:hover {
    color: var(--accent-color);
}

.action-btn svg {
    flex-shrink: 0;
}

.action-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    white-space: nowrap;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--dark-color);
    color: var(--white-color);
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0 6px;
    transition: transform 0.3s ease;
}

.cart-badge:empty {
    display: none;
}

#cartOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#cartOverlay.active {
  opacity: 1;
  visibility: visible;
}

#cartDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--cart-width, 380px);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-card, #ffffff);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  will-change: transform;
}

#cartDrawer.active {
  transform: translateX(0);
}

@media (max-width: 768px) {
  #cartDrawer {
    --cart-width: 85%;
  }
}

@media (max-width: 480px) {
  #cartDrawer {
    --cart-width: 100%;
  }
}

.cart-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-header h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.cart-close:hover {
  background: #f3f4f6;
}

#cartItems {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}


#cartItems::-webkit-scrollbar {
  width: 5px;
}

#cartItems::-webkit-scrollbar-track {
  background: transparent;
}

#cartItems::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.cart-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  align-items: center;
  padding: 16px;
  margin-bottom: 6px;

}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  background: #f3f4f6;
  flex-shrink: 0;
}

.cart-item-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item-info h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-color, #3b82f6);
  margin: 0;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 16px;
  padding: 1px;
  gap: 2px;
}

.qty-btn {
  border: none;
  background: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  color: #374151;
}

.qty-btn:active {
  background: #e5e7eb;
}

.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.qty-display {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #111827;
}

.remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.remove-btn:hover {
  background: #fee2e2;
}

#cartFooter {
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-top: 1px solid var(--border-color, #e5e7eb);
  flex-shrink: 0;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.checkout-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary-color, #3b82f6);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.checkout-btn:hover {
  filter: brightness(0.95);
}

.checkout-btn:active {
  transform: scale(0.98);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  color: #6b7280;
  height: 100%;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-empty p {
  margin: 0;
  font-size: 0.9375rem;
}

.cart-count {
  background: var(--primary-color, #3b82f6);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}

@media (max-width: 480px) {
  .cart-item {
    grid-template-columns: 45px 1fr auto;
    gap: 0.625rem;
    padding: 0.5rem 0;
  }
  
  .cart-item img {
    width: 45px;
    height: 45px;
  }
  
  .cart-item-info h4 {
    font-size: 0.8125rem;
  }
  
  .qty-btn {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    font-size: 0.8125rem;
  }
  
  .qty-display {
    min-width: 22px;
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cartOverlay,
  #cartDrawer,
  .checkout-btn,
  .qty-btn,
  .remove-btn {
    transition: none;
  }
}

@media (min-width: 1440px) {
  #cartDrawer {
    --cart-width: 420px;
  }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover .hamburger-line {
    background-color: black;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0; 
}

.close-search {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.search-input {
    width: 100%;
    padding: 1.5rem 2rem 1.5rem 4rem;
    font-size: 1.5rem;
    border-radius: 12px;
    border: none;
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
    align-items: center;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: all 0.2s ease;
    outline: none;
}

.search-wrapper input:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.search-wrapper input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-color);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1.3rem 1.5rem 1.3rem 4rem;
    font-size: 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    background: var(--white-color);
    outline: none;
    font-family: 'Montserrat', sans-serif;
    transition: box-shadow 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.search-input:focus {
    box-shadow: var(--shadow-xl);
}

.search-input::placeholder {
    color: var(--gray-light);
}

.search-suggestions {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.search-suggestions h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-color);
    margin: 0 0 1rem 0;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.suggestion-item {
    padding: 0.6rem 1.2rem;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    background: var(--dark-color);
    color: var(--white-color);
    border-color: var(--dark-color);
}

.search-results {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results:not(:empty) {
    display: block;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--gray-color);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .action-label {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 110px;
        --navbar-height: 60px;
    }
    
    .header-promo {
        padding: 10px 0;
    }
    
    .promo-text {
        font-size: 0.8rem;
    }
    
    .promo-divider {
        display: none;
    }
    
    .navbar-content {
        height: var(--navbar-height);
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
.search-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    
    .search-input {
        font-size: 1rem;
        padding: 1.1rem 1rem 1.1rem 3.5rem;
    }
    
    .search-icon {
        left: 1rem;
    }
    
    .close-search {
        top: -45px;
    }
    
    .search-suggestions,
    .search-results {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .promo-text {
        font-size: 0.75rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .suggestions-list {
        flex-direction: column;
    }
    
    .suggestion-item {
        width: 100%;
        text-align: center;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body.search-active,
body.menu-active {
    overflow: hidden;
}

.image-carousel {
    margin-top: var(--header-height);
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--dark-color);
}

.carousel-track-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--white-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    color: var(--dark-color);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white-color);
    width: 35px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .image-carousel {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .image-carousel {
        height: 350px;
        margin-top: var(--header-height);
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
    
    .carousel-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .carousel-dots {
        bottom: 1.5rem;
        gap: 0.6rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .image-carousel {
        height: 280px;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .prev-btn {
        left: 0.8rem;
    }
    
    .next-btn {
        right: 0.8rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 25px;
    }
}

.brands-marquee {
    white-space: nowrap;
    position: relative;
    background-color: transparent;
}

.brands-track {
    display: inline-flex;
    will-change: transform;
    animation: scroll-brands 60s linear infinite;
}

.brand-item {
    display: inline-block;
    padding: 0 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.brand-item::after {
    content: "•";
    margin-left: 1rem;
    opacity: 0.4;
}

.brand-item:last-child::after {
    content: "";
    margin: 0;
}

@keyframes scroll-brands {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.products-section {
    padding: 1rem 0;
    background-color: white;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.product-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.product-card.show {
    opacity: 1;
    transform: translateY(0);
}

.product-card img {
    display: block;
    width: 100%;
    height: auto;
    backface-visibility: hidden;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1a1a1a;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-installment {
    margin-bottom:1rem;
}

.price-current {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.price-old {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
}

.product-brand {
    font-size: 0.78rem;
    color: #999;
    margin: 0 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-sizes {
    margin: 0 0 14px;
}

.sizes-label {
    display: block;
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 7px;
    font-weight: 600;
}

.sizes-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.size-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.size-btn:hover {
    border-color: #aaa;
    background: #f5f5f5;
}

.size-btn.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.size-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.devsurf-toast.toast-error {
    background: #e63946;
}

.devsurf-toast.toast-error svg {
    color: #fff;
}

.cart-item-size {
    font-size: 0.72rem;
    color: #888;
    font-weight: 500;
    margin: 1px 0 0;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: #000000;
    color: white;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background-color: #333;
    border-color: #333;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.title-wave {
    width: 80px;
    height: 3px;
    background: #000;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-block {
    background: #fff;
    padding: 30px;
    border: 1px solid #000;
    border-radius: 15px;
}

.about-block.full-width {
    grid-column: 1 / -1;
}

.about-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: black;
}

.about-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-block h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-block p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    padding: 10px 0;
    color: #333;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li::before {
    content: '•';
    color: #000;
    font-weight: bold;
    margin-right: 10px;
}

.about-list strong {
    color: #000;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.mission-item {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
}

.mission-item h4 {
    margin-bottom: 15px;
}

.mission-item p {
    margin-bottom: 0;
}

.mission-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-item ul li {
    padding: 6px 0;
    color: #333;
    border-bottom: none;
}

.mission-item ul li::before {
    content: '-';
    color: #000;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-header .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-block {
        padding: 25px;
    }

    .about-icon {
        width: 45px;
        height: 45px;
    }

    .about-block h3 {
        font-size: 1.4rem;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-header .section-title {
        font-size: 2rem;
    }

    .about-block h3 {
        font-size: 1.3rem;
    }

    .about-block h4 {
        font-size: 1.1rem;
    }
}

.brands-section {
    padding: 80px 0;
    background: white;
    border-radius: 24px;
}

.brands-header {
    text-align: center;
    margin-bottom: 50px;
}

.brands-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.brands-header .section-subtitle {
    font-size: 1rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.brand-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: black;
    border-radius: 8px;
}

.brand-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.brand-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.brand-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #0EA5E9;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.brand-info p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.brand-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-benefits li {
    color: #334155;
    padding: 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.partnership-benefits {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partnership-benefits h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 35px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    color: white;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }

    .brands-header .section-title {
        font-size: 2rem;
    }

    .brands-header .section-subtitle {
        font-size: 0.95rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-card {
        padding: 24px;
    }

    .brand-logo {
        height: 60px;
    }

    .partnership-benefits {
        padding: 30px 20px;
    }

    .partnership-benefits h3 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .brands-header .section-title {
        font-size: 1.75rem;
    }

    .brand-info h3 {
        font-size: 1.2rem;
    }

    .brand-info p {
        font-size: 0.9rem;
    }

    .brand-benefits li {
        font-size: 0.85rem;
    }

    .partnership-benefits h3 {
        font-size: 1.3rem;
    }
}

:root {
    --bg-footer: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #ffffff;
}

.devsurf-footer {
    background-color: var(--bg-footer);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    padding: 80px 0 40px 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #222;
    margin-bottom: 60px;
}

.news-text h3 { 
    font-size: 1.5rem; 
    letter-spacing: -0.5px; 
    margin: 0; 
}

.news-text p { 
    color: var(--text-muted); 
    margin-top: 5px; 
    font-size: 0.95rem; 
}

.news-form { 
    display: flex; 
    gap: 0; 
    border: 1px solid #333; 
    border-radius: 10px; 
    overflow: hidden; 
}

.news-form input { 
    background: transparent; 
    border: none; 
    padding: 12px 20px; 
    color: white; 
    width: 250px; 
    outline: none;
}

.news-form button { 
    background: #fff; 
    border: none; 
    padding: 0 25px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.3s;
    color: black;
}

.news-form button:hover { 
    background: #e0e0e0; 
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 40px;
}

.logo-text { 
    font-weight: 900; 
    letter-spacing: 2px; 
    margin-bottom: 15px; 
}

.logo-text span { 
    font-weight: 300; 
}

.footer-brand p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    line-height: 1.6; 
}

.social-icons { 
    display: flex; 
    gap: 20px; 
    margin-top: 20px; 
}

.social-icons a { 
    color: var(--text-main); 
    opacity: 0.6; 
    transition: 0.3s; 
}

.social-icons a:hover { 
    opacity: 1; 
    transform: translateY(-3px); 
}

.footer-links h4, 
.footer-contact h4 { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    margin-bottom: 25px; 
    color: var(--text-muted);
}

.footer-links ul { 
    list-style: none; 
    padding: 0; 
}

.footer-links li { 
    margin-bottom: 12px; 
}

.footer-links a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-size: 0.9rem; 
    transition: 0.2s; 
}

.footer-links a:hover { 
    color: var(--text-muted); 
    text-decoration: underline; 
}

.footer-contact p { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 0.9rem; 
    color: var(--text-main); 
    margin-bottom: 15px; 
}

.footer-contact i { 
    width: 16px; 
    color: var(--text-muted); 
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.payment-badges { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.payment-badges i { 
    width: 20px; 
    opacity: 0.5; 
}

@media (max-width: 900px) {
    
.footer-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    
    .footer-newsletter { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
    }
}

@media (max-width: 500px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .social-icons { 
        justify-content: center; 
    }
    
    .footer-contact p { 
        justify-content: center; 
    }
    
    .footer-bottom { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
background-color: #ffffff;
border: 2px solid black;
color: #000000;

}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    stroke-width: 3px;
}

.submit {
    color: black;
}

.banner-container {
  /* Ajuste o max-width para bater com o dos seus produtos (ex: 1200px ou 1280px) */
  max-width: 1240px; 
  margin: 40px auto;    /* Centraliza o bloco e dá espaço vertical */
  padding: 0 15px;      /* Padding lateral padrão de vitrines */
  box-sizing: border-box;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;  /* Mantém o alinhamento vertical pelo centro */
  gap: 20px;            /* Espaçamento entre colunas igual ao dos produtos */
}

.banner-grid img {
  width: 100%;
  height: 400px;        /* Altura base das imagens laterais */
  object-fit: cover;
  border-radius: 8px;   /* Arredondamento suave típico de e-commerce */
  background-color: #f4f4f4;
  
  /* Sombra suave corrigida */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  
  transition: all 0.3s ease;
}

/* DESTAQUE DA IMAGEM CENTRAL */
.banner-grid img:nth-child(2) {
  height: 480px;        /* Fisicamente maior que as laterais */
  transform: scale(1.02); /* Leve aumento para não "quebrar" a margem do container */
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsividade: No mobile, elas ficam do mesmo tamanho para facilitar a navegação */
@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .banner-grid img, 
  .banner-grid img:nth-child(2) {
    height: 350px;
    transform: scale(1);
  }
}