@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    border-bottom: 1px solid #eaeaea;
}

.header-logo a {
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #666;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e63946;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    display: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    background: url('assets/leather_hero_1784707878596.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero h1 span {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 12px;
    margin-top: 10px;
    font-weight: 400;
}

.section {
    padding: 4rem 5%;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tab {
    padding: 0.5rem 2rem;
    background-color: #f5f5f5;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tab:hover {
    border-color: #ccc;
}

.tab.active {
    background-color: #222;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.product-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1rem;
    background-color: #f0f0f0;
    transition: transform 0.5s ease;
}

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

.product-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 0.9rem 3rem;
    background-color: #222;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #555;
}

.collection-layout {
    display: flex;
    gap: 1.5rem;
    text-align: left;
}

.collection-hero {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

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

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

.collection-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.collection-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform 0.5s ease;
}

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

.collection-label {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reels-container {
    width: 100%;
    overflow: hidden;
    margin: 4rem 0;
}

.reels {
    display: flex;
    gap: 1.5rem;
    padding: 0 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
}

.reels::-webkit-scrollbar {
    height: 6px;
}
.reels::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.reel-item {
    min-width: 280px;
    aspect-ratio: 9/16;
    position: relative;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn::after {
    content: '';
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #222;
    margin-left: 5px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-item {
    text-align: center;
    cursor: pointer;
}

.category-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
}

.footer {
    background-color: #fcfcfc;
    border-top: 1px solid #eaeaea;
    padding: 5rem 10%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    font-size: 0.85rem;
    color: #666;
}

.footer-col h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #1a1a1a;
}

.subscribe-form {
    display: flex;
    margin-top: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
}

.subscribe-form input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-family: inherit;
}

.subscribe-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.copyright {
    text-align: center;
    padding: 1.5rem;
    background: #f5f5f5;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .collection-layout { flex-direction: column; }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.5rem; }
    .footer { grid-template-columns: 1fr; }
}

/* --- ANIMATIONS & EFFECTS --- */

/* Page Transition */
body {
    animation: fadeIn 0.8s ease forwards;
}

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Hero */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Cart Bounce */
@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
.cart-bounce-anim {
    animation: cartBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Play Pulse */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255, 0); }
}
.play-btn {
    animation: pulse 2s infinite;
}

/* Slide-up Add to Cart Button (Categories) */
.product-card .add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}
.product-card:hover .add-to-cart-btn {
    bottom: 0;
    opacity: 1;
}

/* Slide-out Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0; right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open {
    right: 0;
}
.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-header h3 { font-size: 1.2rem; text-transform: uppercase; }
.close-cart { background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}
.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid #eaeaea;
}
.cart-drawer-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f5f5f5;
}
.cart-drawer-item img {
    width: 60px;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.cart-drawer-item-details { flex: 1; }
.cart-drawer-item-title { font-size: 0.9rem; font-weight: 600; }
.cart-drawer-item-price { font-size: 0.85rem; color: #666; margin-bottom: 0.5rem; }
.cart-drawer-actions { display: flex; gap: 0.5rem; align-items: center; }
.cart-drawer-actions button {
    background: #eee; border: none; padding: 2px 8px; cursor: pointer;
}

