/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
}

.navbar.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-100px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    padding: 0;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    position: relative;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cart-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cart-btn i {
    font-size: 1.2rem;
    color: #d4af37;
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    /* Reduce the vertical padding for a more compact hero area */
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="black" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

/* New hero layout */
.hero-container {
    display: flex;
    flex-direction: row-reverse; /* For RTL: text on right, image on left */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    max-width: 50%;
    text-align: right;
    z-index: 10;
}

.hero-image {
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Floating Bubbles */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.bubble {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(10px); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.bubble img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    transition: none !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent;
    position: relative;
    z-index: 2;
}

.bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.bubble:hover img {
    transform: rotate(10deg);
}

/* Bubble 1 - Pink/Magenta */
.bubble-1 {
    top: 10%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

/* Bubble 2 - Yellow */
.bubble-2 {
    top: 20%;
    right: 15%;
    animation: float2 10s ease-in-out infinite;
}

/* Bubble 3 - Red */
.bubble-3 {
    top: 60%;
    left: 5%;
    animation: float3 12s ease-in-out infinite;
}

/* Bubble 4 - Blue */
.bubble-4 {
    top: 70%;
    right: 10%;
    animation: float4 9s ease-in-out infinite;
}

/* Bubble 5 - Green */
.bubble-5 {
    top: 40%;
    left: 20%;
    animation: float5 11s ease-in-out infinite;
}

/* Bubble 6 - Purple */
.bubble-6 {
    top: 30%;
    right: 25%;
    animation: float6 13s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float1 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg); 
    }
    50% { 
        transform: translateY(-10px) translateX(-5px) rotate(180deg); 
    }
    75% { 
        transform: translateY(-30px) translateX(15px) rotate(270deg); 
    }
}

@keyframes float2 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-25px) translateX(-10px) rotate(120deg); 
    }
    66% { 
        transform: translateY(-15px) translateX(8px) rotate(240deg); 
    }
}

@keyframes float3 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    20% { 
        transform: translateY(-18px) translateX(12px) rotate(72deg); 
    }
    40% { 
        transform: translateY(-8px) translateX(-8px) rotate(144deg); 
    }
    60% { 
        transform: translateY(-22px) translateX(6px) rotate(216deg); 
    }
    80% { 
        transform: translateY(-12px) translateX(-12px) rotate(288deg); 
    }
}

@keyframes float4 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    30% { 
        transform: translateY(-20px) translateX(-15px) rotate(108deg); 
    }
    60% { 
        transform: translateY(-10px) translateX(10px) rotate(216deg); 
    }
}

@keyframes float5 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-25px) translateX(8px) rotate(90deg); 
    }
    50% { 
        transform: translateY(-5px) translateX(-12px) rotate(180deg); 
    }
    75% { 
        transform: translateY(-20px) translateX(15px) rotate(270deg); 
    }
}

@keyframes float6 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    16% { 
        transform: translateY(-15px) translateX(10px) rotate(60deg); 
    }
    32% { 
        transform: translateY(-25px) translateX(-5px) rotate(120deg); 
    }
    48% { 
        transform: translateY(-10px) translateX(12px) rotate(180deg); 
    }
    64% { 
        transform: translateY(-20px) translateX(-8px) rotate(240deg); 
    }
    80% { 
        transform: translateY(-18px) translateX(6px) rotate(300deg); 
    }
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    direction: rtl;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image-container {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.main-product-image {
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: contain;
}

.main-product-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    overflow: hidden;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 2rem 0;
}

.product-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Color Selection */
.color-selection {
    margin-bottom: 2rem;
}

.color-selection h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.color-options {
    /* Use flex layout since we only have two colour options */
    display: flex;
    gap: 1rem;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.color-option:hover,
.color-option.active {
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.color-circle.red {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.color-circle.blue {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.color-circle.purple {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.color-circle.gold {
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

/* Added support for black and white color circles for the product color selector */
.color-circle.black {
    /* Use a subtle gradient between dark grey and black to give depth */
    background: linear-gradient(135deg, #2d2d2d, #000000);
}

.color-circle.white {
    /* Use a very light gradient for white so it remains visible on a white border */
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
}

.color-option span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Quantity Selection */
.quantity-selection {
    margin-bottom: 2rem;
}

.quantity-selection h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: fit-content;
    flex-direction: row-reverse;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #d4af37;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #b8941f;
    transform: scale(1.1);
}

.quantity {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 30px;
    text-align: center;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    direction: rtl;
}

.add-to-cart-btn,
.buy-now-btn {
    padding: 18px 24px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: row-reverse;
}

.add-to-cart-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    backdrop-filter: blur(10px);
}

.add-to-cart-btn:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.buy-now-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Product Features */
.product-features {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-direction: row-reverse;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature i {
    color: #d4af37;
    font-size: 1.1rem;
}

.feature span {
    color: #666;
    font-weight: 500;
}


/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Product Features Section */
.product-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.product-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.product-features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.product-features-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.product-features-section .section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-features-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.product-features-section .section-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Features Grid */
.product-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* Feature Card */
.product-features-section .feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.product-features-section .feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-features-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-features-section .feature-card:hover::before {
    opacity: 1;
}

.product-features-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Feature Image */
.product-features-section .feature-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

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

/* Feature Content */
.product-features-section .feature-content {
    position: relative;
    z-index: 2;
}

.product-features-section .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-features-section .feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Animation Delays */
.product-features-section .feature-card:nth-child(1) { transition-delay: 0.1s; }
.product-features-section .feature-card:nth-child(2) { transition-delay: 0.2s; }
.product-features-section .feature-card:nth-child(3) { transition-delay: 0.3s; }
.product-features-section .feature-card:nth-child(4) { transition-delay: 0.4s; }

/* Enlarge only the wrist-strap image without growing the card */
.product-features-section .feature-card.wrist-strap {
    overflow: visible; /* allow image to extend outside card */
}

.product-features-section .feature-card.wrist-strap .wrist-strap-image {
    height: 380px; /* larger than default 300px */
    transform: translateY(10px);
}

.product-features-section .feature-card.wrist-strap:hover .wrist-strap-image {
    transform: translateY(10px) scale(1.07);
}

@media (max-width: 1024px) {
    .product-features-section .feature-card.wrist-strap .wrist-strap-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .product-features-section .feature-card.wrist-strap .wrist-strap-image {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .product-features-section .feature-card.wrist-strap .wrist-strap-image {
        height: 220px;
    }
}

/* Responsive Design for Product Features */
@media (max-width: 1024px) {
    .product-features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-features-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-features-section {
        padding: 60px 0;
    }
    
    .product-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .product-features-section .section-title {
        font-size: 2rem;
    }
    
    .product-features-section .section-subtitle {
        font-size: 1rem;
    }
    
    .product-features-section .feature-card {
        padding: 25px 20px;
    }
    
    .product-features-section .feature-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .product-features-section {
        padding: 40px 0;
    }
    
    .product-features-section .section-title {
        font-size: 1.8rem;
    }
    
    .product-features-section .feature-card {
        padding: 20px 15px;
    }
    
    .product-features-section .feature-image {
        height: 200px;
    }
    
    .product-features-section .feature-title {
        font-size: 1.2rem;
    }
    
    .product-features-section .feature-description {
        font-size: 0.9rem;
    }
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: #1a1a1a;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: row-reverse;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #1a1a1a;
}

.cart-items {
    padding: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

/* Cart item with thumbnail image */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    direction: rtl;
}

.cart-item-thumbnail {
    flex-shrink: 0;
}

.cart-item-thumbnail img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.empty-cart {
    text-align: center;
    color: #666;
    padding: 2rem;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-total {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
}

.checkout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.checkout-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: row-reverse;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.close-checkout {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-checkout:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.checkout-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Order Summary */
.order-summary {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.order-summary h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: right;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: row-reverse;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-info h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.order-item-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.order-item-price {
    font-weight: 600;
    color: #d4af37;
}

.order-total {
    padding-top: 1rem;
    border-top: 2px solid #d4af37;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Checkout Form */
.checkout-form h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: right;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: right;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    flex-direction: row-reverse;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-direction: row-reverse;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #d4af37;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Checkout Actions */
.checkout-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-direction: row-reverse;
}

.back-to-cart-btn {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 2px solid rgba(108, 117, 125, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row-reverse;
}

.back-to-cart-btn:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
}

.place-order-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row-reverse;
    flex: 1;
    justify-content: center;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.place-order-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-left: 0.5rem;
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-direction: row-reverse;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Make the navbar span the full width on tablets/mobiles */
    .navbar {
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
        padding: 0.8rem 1.5rem;
        top: 0;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .cart-btn {
        padding: 10px 16px;
    }
    
    .cart-btn i {
        font-size: 1rem;
    }

    .checkout-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-content {
        width: 98%;
        max-height: 95vh;
    }


    .section-header h2 {
        font-size: 2.5rem;
    }

    .panel-content h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .bubble {
        width: 60px;
        height: 60px;
    }

    .bubble-1 {
        top: 15%;
        left: 5%;
    }

    .bubble-2 {
        top: 25%;
        right: 10%;
    }

    .bubble-3 {
        top: 65%;
        left: 2%;
    }

    .bubble-4 {
        top: 75%;
        right: 5%;
    }

    .bubble-5 {
        top: 45%;
        left: 15%;
    }

    .bubble-6 {
        top: 35%;
        right: 20%;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .main-image-container {
        padding: 2rem;
    }

    .product-orb {
        width: 250px;
        height: 250px;
    }

    .orb-glow {
        width: 270px;
        height: 270px;
    }

    .orb-content {
        font-size: 3rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    /* Display color options horizontally and center them */
    .color-options {
        display: flex;
        justify-content: center;
        gap: 1rem;
        /* Remove grid definitions */
        grid-template-columns: none;
    }

    /* On mobile, display thumbnails in a single horizontal row with scrolling
       instead of occupying multiple rows. This prevents the thumbnails from
       taking up too much vertical space while still making them accessible.
       The items will scroll horizontally when overflowed. */
    .image-thumbnails {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .image-thumbnails::-webkit-scrollbar {
        height: 6px;
    }
    .image-thumbnails::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }
    .image-thumbnails::-webkit-scrollbar-thumb {
        background: #d4af37;
        border-radius: 10px;
    }

    /* Reduce thumbnail width and height on smaller screens */
    .thumbnail {
        flex: 0 0 auto;
        width: 60px;
    }
    .thumbnail img {
        height: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Stack hero content vertically and centre text for better mobile readability */
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .hero-text,
    .hero-image {
        max-width: 100%;
    }
    .hero-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
        padding: 0.6rem 1rem;
        top: 0;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .cart-btn {
        padding: 8px 12px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .bubble {
        width: 50px;
        height: 50px;
    }

    .bubble-1 {
        top: 20%;
        left: 3%;
    }

    .bubble-2 {
        top: 30%;
        right: 8%;
    }

    .bubble-3 {
        top: 70%;
        left: 1%;
    }

    .bubble-4 {
        top: 80%;
        right: 3%;
    }

    .bubble-5 {
        top: 50%;
        left: 12%;
    }

    .bubble-6 {
        top: 40%;
        right: 15%;
    }

    .product-orb {
        width: 200px;
        height: 200px;
    }

    .orb-glow {
        width: 220px;
        height: 220px;
    }

    .orb-content {
        font-size: 2.5rem;
    }

    .color-options {
        display: flex;
        justify-content: center;
        gap: 1rem;
        grid-template-columns: none;
    }

    .image-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
}