/* COLOR VARIABLES */
:root {
  --color-primary: #334155;
  --color-primary-dark: #1e293b;
  --text-color-main: #fff;
  --button-bg-color1: #1e293b;
  --button-bg-color2: #334155;
  --button-hover-color: #f1f5f9;
  --button-text-color: #334155;
  --color-accent: #334155;
  --color-accent-light: #464d58;
  --color-medium-gray: #cbd5e1;
  --bg-checkout: linear-gradient(135deg, var(--color-light) 0%, #f1f5f9 100%);
  --shadow-color: rgba(0, 0, 0, 0.2);

  --site-heading-font: "Playfair Display", serif;
  --site-body-font: "Montserrat", sans-serif;
}
/* COLOR VARIABLES END */


/* ===== REST OF YOUR CSS (UPDATED WITH VARIABLES) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--site-body-font);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--site-heading-font);
}

.hero-gradient {
    background: var(--bg-hero);
}

.watch-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.watch-3d img {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.watch-3d:hover img {
    filter: drop-shadow(0 25px 50px var(--shadow-color));
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.premium-card {
    backdrop-filter: blur(10px);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-premium {
    background: linear-gradient(135deg, var(--button-bg-color1), var(--button-bg-color2));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(30, 41, 59, 0.3);
}

.cart-animation {
    animation: cartBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.parallax {
    transform: translateZ(0);
    will-change: transform;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.nav-blur {
    backdrop-filter: blur(20px);
    background: rgba(248, 250, 252, 0.9);
}

@media (max-width: 768px) {
    .watch-3d:hover img {
        transform: scale(1.02);
    }
}

.price-highlight {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-icon {
    background: linear-gradient(135deg, var(--color-light-gray), var(--color-medium-gray));
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
}

.feature-icon:hover svg {
    color: white;
}

.checkout-gradient {
    background: var(--bg-checkout);
}

.input-focus {
    transition: all 0.3s ease;
}

.input-focus:focus {
    box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.2);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    color: var(--color-primary);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.9);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--color-primary);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
}


/* Custom CSS */

/* Custom CSS End */
