*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}


.header{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

.nav {
    display: flex;
    align-items: center;
    width: 100%;
    position: static;
}

.logo {
    flex-shrink:0;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
} 

.nav-links a{
    text-decoration: none;
    color:#1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.5s ease;
    position: relative;
}


.nav-links a:hover {
    color: #007AFF;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007AFF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after{
    width: 100%;
}

.nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    flex-shrink: 0;
}


.search-btn, .cart-btn {
    background: none;
    border: none;
    font-size: 13px;
    letter-spacing: 0.15;
    cursor: pointer;
    color: #000;
    font-family: inherit;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.search-btn:hover, .cart-btn:hover {
    opacity: 0.6;
}

.cart-btn .material-icons {
    font-size: 24px;
    color: inherit;
    vertical-align: middle;
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: #f5f5f5;
    z-index: 9999;
    box-sizing: border-box;
    padding: 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.search-overlay.active {
    display: block;
}

/* Cart Model */
.cart-Model {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-sizing: border-box;
    padding: 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.cart-Model.active {
    display: block;
}    

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.close-cart {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color:#333;
}

.search-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #999;
    padding-bottom: 12px;
    margin-bottom: 2rem;
}

.search-input-row input {
    flex: 1;
    border: none;
    font-size: 1.2rem;
    outline: none;
    letter-spacing: 0.05em;
    background: transparent;
}

.search-input-row button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.suggestion-item {
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
    cursor: pointer;
    border-bottom: none;
    color: #333;
}

.suggestion-item:hover {
    opacity: 0.6;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}




.cart-btn:hover {
    background: #fff;
    border-color: #007AFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}

.cart-count {
    position: relative;
    top: -5px;
    background: #000000;
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/*smooth scroll */

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: o;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.slide.exit {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 0;
}

.slide-bg {
    position: absolute;
    inset: -0%;
    background-size: cover;
    background-position: center top;
}

@keyframes kenBurns {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.slider-btn {
    position: absolute;
    bottom: 5%;
    z-index: 10;
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    color: black;
}

.slider-btn.prev {
    right: 8%;
}

.slider-btn.next {
    right: 3%;
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
}

.slide-content h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    opacity: 0;
    transform: translateY(40px);
    color: #000000;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-content p {
    font-size: 1.6rem;
    margin: 0.5rem 0 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    color: #000000;
    transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    border-radius: 50px;
    padding: 1rem 2rem;
    background: white;
    color: black;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.slide.active .slide-content h1, .slide.active .slide-content p,
.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-2 .slide-content h1,
.slide-2 .slide-content p,
.slide-2 .slide-content a {
    color: black;
}

.slide-2 .slide-content p {
    color:black;
}

/*products*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}


.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 0px;
    box-sizing: border-box;
    display: block;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-info {
    padding: 12px 0;
}

.product-info h3 {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 4px;
}

.product-info .price {
    font-size: 0.75rem;
    color: #333;
}

.product-card .add-icon {
    position: absolute;
    bottom: 60px;
    right:10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .add-icon {
    opacity: 1;
}

#productModel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: white;
    overflow-y: auto;
}

#productModel img#mainImage {
    width: 100%;
    height: 900px;
    aspect-ratio: unset;
    object-fit: cover;
}

.size-btn.sold-out {
    color: #ccc;
    border-color: #ddd;
    text-decoration: line-through;
    cursor: not-allowed;
}

.editorial-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 500px;
}


.editorial-banner img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

#thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80px;
    flex-shrink: 0;
}

#thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s ease;
}

#thumbs img:hover,
#thumbs img.active {
    border: 2px solid black;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 60px 40px 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    margin-top: 16px;
    color: #333;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.75rem;
    color: #999;
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 200px;
    z-index: 9999;
    flex-direction: column;
    gap: 12px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    color: #111;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Checkou Button */
.checkout-btn {
    background: #1a73e8;
    color: white;
    width: 100%;
    padding: 14px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 20px;
    display: block;
}

.checkout-btn:hover {
    background: #1557b0
}

.continue-shopping-btn {
background: white;
color: black;
width: 100%;
padding: 14px;
border: 1px solid black;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
border-radius: 6px;
margin-top: 10px;
display: block;
}

.continue-shopping-btn:hover {
background: #f5f5f5;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.shipping-option span{
    flex: 1;
}

.shipping-option:hover {
    border-color: #000;
}

.shipping-option input[type="radio"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #000;
}

#imageSlider { display: none; }



/* ===== MOBILE RESPONSE ===== */
/* ===== MOBILE ===== */
@media (max-width: 768px) {
/* NAV */
.nav-links { display: none; }
.hamburger { display: flex; position: relative; z-index: 1000; }
.header { width: 100vw !important; padding: 0 ; overflow: visible; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; position: static; }
.nav-actions { gap: 16px; margin-right: 16px; }
.logo { position: absolute; left:50%; transform: translateX(-65%);}
.search-text { display: none !important; }
.logo img { height: 22px !important; }

.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow-y: auto !important;
    background: rgba(255,255,255,0.97) !important;
    padding:  60px 20px 20px 20px !important;
    gap: 0 !important;
    z-index: 999 !important;
    list-style: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.nav-links.mobile-open li {
    width: 100% !important;
    display: block !important;
}

.nav-links.mobile-open li a {
    width: 100% !important;
    display: block !important;
    padding: 16px 0 !important;
    font-size: 1.1rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.nav-links.mobile-open li a:active {
    color: #888 !important;
}


.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    margin-left: 16px;
}

.hamburger span {
    display: block !important;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
}

.search-overlay {
    position: fixed !important;
    top: 60px !important;
    width: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
}

.search-close-btn {
    display: block !important;
    background: none !important;
    border: none !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    padding: 4px 8px !important;
    color: #000 !important;
}

/* Cart */
.cart-Model {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    right: 0 !important;
}

.checkout-btn .cart-checkout {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
}

#modelName {
    font-size:1rem !important;
}

#modalDetails ul {
    padding-left:20px !important;
}
/* HERO */
.hero h1, .hero-title, .hero .title {
    font-size: 2.2rem !important;
    white-space: normal;
}
.hero-banner { height: auto !important; min-height: 500px; overflow: hidden; }
.hero-banner h1, .hero-banner h2, .hero-banner p, .hero-banner span {
    font-size: 2rem !important;
    white-space: normal !important;
    word-break: break-word;
}
.editorial-banner { overflow: hidden; width: 100%; height: auto; }
.editorial-banner h1, .editorial-banner h2, .editorial-banner p {
    font-size: 2rem !important;
    white-space: normal !important;
    word-break: break-word;
}

.editorial-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-banner img {
    object-position: 65% center !important;
}

.slide-bg {
    background-position: 70% top !important;
}

h1, h2 { font-size: 2rem !important; white-space: normal !important; }

/* PRODUCT GRID */
.product-grid, .products-grid, .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    padding: 0 1rem;
}
.modal-body {
    flex-direction: column !important;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.modalDetails {
    width: 100%;
    flex-shrink: 1;
}

#thumbs {
    flex-direction: row !important;
    width: 100% !important;
}

div[style*="width:350px"] {
    width: 100%;
}


/* PRODUCT MODAL */
#productModel {
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    overflow-x: hidden;
    border-radius: 12px;
    position: relative;
    overflow-y: auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}
#productModel .modal-body {
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0;
    box-sizing: border-box !important;
}
#productModel #thumbs {
    display: block;
}

#imageSlider {
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    touch-action: pan-y;
}

#imageSliderTrack {
    display: flex !important;
    overflow: visible !important;
    width: 100%;
    background: #e8e8e8;
    transition: transform 0.3s ease;
    will-change: transform;
}
#imageSliderTrack img {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    object-position: center !important;
    flex-shrink: 0 !important;
}


#swipeDots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 6px;
    background: #f7f7f5;
}

.swipe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.2s;
}

.swipe-dot.active {
    background: #111;
}
#productModel #thumbs img { width: 55px !important; height: 55px !important; object-fit: cover; border-radius: 3px; flex-shrink: 0; border: 1px solid #e0e0e0; }
#productModel #mainImage {
    display: block;
}
#productModel .modal-details {
    width: 100% !important;
    padding: 16px 14px 20px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}
#productModel .modal-details h2 {
    font-size: 0.95rem !important;
    white-space: normal !important;
    line-height: 1.35;
    margin: 0 0 6px 0;
    padding-right: 24px;
    letter-spacing: 0.03em;
}
.add-to-cart-btn { width: 100% !important; box-sizing: border-box !important; padding: 14px; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 14px; border-radius: 3px; }

/* FOOTER */
.footer-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 2rem;
}
.footer-col { width: 100% !important; text-align: center; margin-bottom: 1.5rem; }
}
