/* Rose Sky Jewels - Premium Fine Jewelry Website Styles */

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

html {
    scroll-behavior: smooth;
    /* Prevent any accidental horizontal scroll from root */
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Ensure media never exceeds its container width */
img, video {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.btn-outline:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.logo-placeholder i {
    color: #ff6b6b;
    font-size: 3rem;
}

/* Hide brand name text next to the icon in header/footer */
.logo-placeholder span {
    display: none;
}

/* Ensure image-based logo displays at 50px height across site */
.logo-placeholder img {
    height: 50px !important;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f5f5f5;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding-top: 30px;
}

.hero-constellation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(238, 90, 82, 0.1) 0%, transparent 50%);
    animation: constellation 12s ease-in-out infinite;
}

.hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.05) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes constellation {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100px); }
    50% { transform: translateX(100px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.rose-text {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #dddddd;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-gem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(238, 90, 82, 0.1);
    color: #ee5a52;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(238, 90, 82, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jewelry-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.showcase-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    animation: orbit 25s linear infinite;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite;
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease;
}

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

.floating-gems {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gem-float {
    position: absolute;
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: gemFloat 3s ease-in-out infinite;
}

.gem-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.gem-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.gem-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes gemFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 107, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.video-details p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.stat-item i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

/* Luxury Features Section */
.luxury-features-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
}

.features-hexagon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-hex {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-hex::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s;
}

.feature-hex:hover::before {
    left: 100%;
}

.feature-hex:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
}

.hex-shape {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.feature-hex:hover .hex-shape {
    transform: scale(1.1) rotate(10deg);
}

.feature-hex h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-hex p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Product Gallery Section */
.product-gallery-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gallery-showcase {
    position: relative;
}

.main-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.gallery-main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-main-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.overlay-badge {
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff6b6b;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

.gallery-content {
    padding-left: 2rem;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.gallery-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.gallery-content p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.jewelry-benefits h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.benefit-item i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

.video-preview {
    margin-top: 2rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(238, 90, 82, 0.1);
    color: #ee5a52;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(238, 90, 82, 0.2);
    transition: all 0.3s ease;
}

.video-link:hover {
    background: rgba(238, 90, 82, 0.2);
    transform: translateY(-2px);
}

/* Specifications Section */
.specifications-section {
    padding: 8rem 0;
    background: #0a0a0a;
}

.specs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.specs-visual {
    position: relative;
}

.specs-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.spec-highlights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.highlight {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-dot {
    width: 12px;
    height: 12px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.3);
    animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.highlight-label {
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.highlight-1 {
    top: 20%;
    left: 10%;
}

.highlight-2 {
    top: 40%;
    right: 15%;
}

.highlight-3 {
    bottom: 25%;
    left: 20%;
}

.specs-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-group {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.spec-group h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.spec-group h3 i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.spec-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

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

.spec-label {
    font-weight: 600;
    color: #dddddd;
}

.spec-value {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-sparkles {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    animation: sparkle 6s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-text p {
    font-size: 1.2rem;
    color: #dddddd;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #dddddd;
    font-weight: 500;
}

.cta-benefits .benefit-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.cta-action {
    text-align: center;
}

.price-highlight {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #dddddd;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.guarantee-text i {
    color: #48bb78;
}

/* Footer */
footer {
    background: #050505;
    color: #dddddd;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo .logo-placeholder {
    font-size: 1.8rem;
    color: #ffffff;
}

.footer-logo .logo-placeholder i {
    color: #ff6b6b;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    color: #cccccc;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-content {
        padding-left: 0;
    }
    
    .specs-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .features-hexagon {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-hex {
        padding: 1.5rem;
    }
    
    .hex-shape {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .gallery-content h2 {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Page Sections - Shared Page Hero */
.page-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}
.page-hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* About Page */
.about-content-section { padding: 4rem 0; background: #0a0a0a; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.about-text h2 { font-size: 2rem; color: #ffffff; margin-bottom: 1rem; }
.about-text h3 { font-size: 1.25rem; color: #ffffff; margin-top: 1.5rem; }
.image-stack { position: relative; }
.stack-image { width: 100%; border-radius: 14px; box-shadow: 0 12px 35px rgba(255,107,107,0.2); }
.stack-image.secondary { position: absolute; right: -10%; bottom: -10%; width: 60%; border: 6px solid #0a0a0a; }
.stats-overlay { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.25rem; }
.stat-item { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 12px; padding: 0.75rem; text-align: center; }
.stat-number { color: #ff6b6b; }

.values-section { padding: 4rem 0; background: #1a1a1a; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.value-card { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 16px; padding: 1.5rem; box-shadow: 0 8px 24px rgba(255,107,107,0.1); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(255,107,107,0.2); }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #ff6b6b, #ee5a52); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 8px 24px rgba(255,107,107,0.3); margin-bottom: 1rem; }

/* Contact Page */
.contact-content-section { padding: 4rem 0; background: #0a0a0a; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-info .info-header h2 { font-size: 1.75rem; }
.contact-methods { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1rem 0; }
.contact-method { display: flex; gap: 1rem; background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 14px; padding: 1rem; align-items: center; }
.method-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,107,107,0.2); color: #ff6b6b; display: inline-flex; align-items: center; justify-content: center; }
.support-features .feature-item { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 12px; padding: 0.75rem 1rem; }
.contact-form-section { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 16px; padding: 1.5rem; box-shadow: 0 10px 28px rgba(255,107,107,0.1); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.contact-form label { font-weight: 600; color: #dddddd; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 0.875rem 1rem; border: 1px solid rgba(255,107,107,0.2); border-radius: 10px; font: inherit; color: #ffffff; background: rgba(26,26,26,0.8); }
.checkbox-group .checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; }

.faq-section { padding: 3rem 0; background: #0a0a0a; }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.faq-item { border: 1px solid rgba(255,107,107,0.2); border-radius: 12px; overflow: hidden; background: rgba(26,26,26,0.8); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; cursor: pointer; background: rgba(255,107,107,0.1); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.25rem; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1rem; }

/* Blog Listing Page */
.blog-content-section { padding: 4rem 0; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
.blog-card { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(255,107,107,0.1); }
.blog-card .blog-image { position: relative; }
.blog-card .blog-image img { width: 100%; display: block; }
.blog-card .blog-content { padding: 1.25rem; overflow-wrap: anywhere; word-break: break-word; }
.blog-card .blog-meta { display: flex; gap: 1rem; color: #cccccc; font-size: 0.9rem; margin-bottom: 0.5rem; }
.blog-card h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 0.5rem; color: #ff6b6b; text-decoration: none; font-weight: 600; }
.blog-card.featured { border-color: #ff6b6b; }
.blog-badge { position: absolute; top: 12px; left: 12px; background: #ff6b6b; color: #fff; padding: 0.3rem 0.6rem; border-radius: 999px; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
    .blog-card { width: 100%; max-width: 100%; }
    .blog-card .blog-content { padding: 1rem; }
    .blog-card h2 { font-size: 1.2rem; }
    .blog-card .read-more { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .blog-card .blog-content { padding: 0.875rem; }
    .blog-card h2 { font-size: 1.1rem; }
    .blog-badge { font-size: 0.7rem; }
}

/* Blog Article Page */
.article { padding: 3rem 0; }
.article-meta { display: flex; gap: 1rem; align-items: center; color: #cccccc; margin-bottom: 1rem; font-size: 0.95rem; }
.article-hero-image { margin: 1rem 0 2rem; border-radius: 16px; overflow: hidden; background: rgba(255,107,107,0.06); border: 1px solid rgba(255,107,107,0.18); }
.article-hero-image img { width: 100%; display: block; }
.article-hero-image figcaption { font-size: 0.9rem; color: #bbbbbb; padding: 0.75rem 1rem; background: rgba(26,26,26,0.8); border-top: 1px solid rgba(255,107,107,0.12); }

.article-layout { display: grid; grid-template-columns: 0.35fr 1.65fr; gap: 2rem; align-items: start; }

.article-toc { position: sticky; top: 6rem; background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 14px; padding: 1rem; box-shadow: 0 10px 28px rgba(255,107,107,0.08); }
.article-toc h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.article-toc ul { list-style: none; display: grid; gap: 0.35rem; }
.article-toc a { color: #dddddd; text-decoration: none; font-size: 0.95rem; padding: 0.4rem 0.6rem; display: block; border-radius: 10px; transition: all 0.2s ease; }
.article-toc a:hover { color: #ff6b6b; background: rgba(255,107,107,0.08); }

.article-body { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 16px; padding: 1.25rem 1.25rem; box-shadow: 0 12px 30px rgba(255,107,107,0.1); }
.article-body h2 { font-size: 1.8rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.article-body h3 { font-size: 1.2rem; margin-top: 1rem; margin-bottom: 0.5rem; }
.article-body p { font-size: 1.05rem; }
.article-body ul, .article-body ol { margin: 0 0 1rem 1.25rem; }
.article-body li { color: #cccccc; margin: 0.35rem 0; }

.article-cta { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.article-cta .btn { border-radius: 999px; }

/* Inline helpers */
.article .note { background: rgba(255,107,107,0.08); border: 1px solid rgba(255,107,107,0.2); color: #dddddd; padding: 0.75rem 1rem; border-radius: 12px; }

/* Responsive adjustments for Article */
@media (max-width: 1024px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-toc { position: static; order: -1; }
}
@media (max-width: 480px) {
    /* Add side breathing room on blog details */
    .article.container { padding-left: 10px; padding-right: 10px; }
    .article-body { padding: 1rem; }
    .article-body h2 { font-size: 1.5rem; }
    .article-body p { font-size: 1rem; }
}

/* Legal Pages (Privacy, Terms, Cookies) */
.legal-page { padding: 4rem 0; background: #0a0a0a; }
.legal-header h1 { font-size: 2rem; }
.last-updated { color: #cccccc; }
.legal-content { display: grid; gap: 1rem; margin-top: 1rem; }
.legal-section { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 14px; padding: 1.25rem 1.5rem; box-shadow: 0 8px 20px rgba(255,107,107,0.1); }

/* Small tweaks for fixed navbar offset on inner pages */
main { padding-top: 4.5rem; }
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stack-image.secondary { position: static; width: 100%; border: none; margin-top: 1rem; }
}
@media (max-width: 768px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Shop Page Styles */
/* Product Hero Section */
.product-hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    /* Prevent animated background from causing horizontal overflow */
    overflow: hidden;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.product-info h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #dddddd;
    margin-bottom: 1.5rem;
    /* Ensure long content never forces horizontal scroll */
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 107, 0.3);
    margin-bottom: 1rem;
}

.product-highlights { margin: 1.5rem 0 2rem; }
.highlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.highlight-item { display: flex; gap: 0.75rem; align-items: center; background: rgba(255,107,107,0.06); border: 1px solid rgba(255,107,107,0.15); border-radius: 12px; padding: 0.75rem; }
.highlight-item i { color: #ff6b6b; }
.highlight-item h3 { margin: 0; font-size: 1rem; }
.highlight-item p { margin: 0; font-size: 0.9rem; color: #cccccc; }

.product-pricing { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.price-display { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.3); border-radius: 14px; padding: 1rem 1.25rem; }
.price-display .price-label { display: block; font-size: 0.85rem; color: #cccccc; }
.price-display .price-value { display: block; font-size: 2rem; font-weight: 800; color: #ff6b6b; line-height: 1; }
.price-display .price-note { display: block; font-size: 0.85rem; color: #dddddd; }

/* Product Gallery */
.product-gallery { position: relative; }
.main-product-view { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2); }
.main-product-view .main-image { width: 100%; display: block; transition: transform 0.3s ease, opacity 0.3s ease; }
.main-product-view .main-image:hover { transform: scale(1.03); }

.image-badges { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.5rem; }
.image-badges .badge { background: rgba(255, 107, 107, 0.9); color: #fff; padding: 0.35rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; backdrop-filter: blur(10px); }
.image-badges .badge.certified { background: rgba(72, 187, 120, 0.9); }

.thumbnail-gallery { display: flex; gap: 1rem; margin-top: 1rem; }
/* Reuse .thumbnail styles; ensure consistent size */
.thumbnail-gallery .thumbnail { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; }
.thumbnail-gallery .thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Detailed Specifications with Tabs */
.detailed-specs-section { padding: 6rem 0; background: #0a0a0a; }
.specs-layout { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 2rem; align-items: start; }

.specs-navigation h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.spec-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.spec-tab { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); color: #dddddd; padding: 0.5rem 1rem; border-radius: 999px; cursor: pointer; font-weight: 600; transition: all 0.2s ease; }
.spec-tab:hover { border-color: rgba(255,107,107,0.4); color: #ff6b6b; }
.spec-tab.active { background: rgba(255,107,107,0.15); color: #ff6b6b; border-color: rgba(255,107,107,0.5); }

.specs-content { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 16px; padding: 1.25rem; box-shadow: 0 12px 30px rgba(255,107,107,0.1); }
.spec-panel { display: none; }
.spec-panel.active { display: block; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.spec-item { display: flex; gap: 0.75rem; align-items: start; background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.15); border-radius: 12px; padding: 0.75rem; }
.spec-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,107,107,0.2); color: #ff6b6b; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.spec-details h4 { margin: 0; font-size: 1rem; }
.spec-note { font-size: 0.85rem; color: #cccccc; }

.product-details h3 { margin-bottom: 0.75rem; }
.details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.detail-card { background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.15); border-radius: 12px; padding: 0.75rem; }
.detail-card h4 { margin: 0.25rem 0; font-size: 1rem; }
.detail-card i { color: #ff6b6b; }

/* Purchase CTA Section (Shop) */
.purchase-cta-section { padding: 6rem 0; background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); position: relative; overflow: hidden; }
.purchase-cta-section .cta-background { position: absolute; inset: 0; }
.purchase-cta-section .cta-sparkles { width: 100%; height: 100%; background: radial-gradient(circle at 30% 70%, rgba(255,107,107,0.1) 0%, transparent 50%); animation: sparkle 6s ease-in-out infinite; }
.cta-content { position: relative; z-index: 1; }

.cta-content .cta-text h2 { font-size: 2.2rem; }
.guarantee-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.75rem; margin-top: 1rem; }
.guarantee-item { display: flex; align-items: center; gap: 0.5rem; color: #dddddd; background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 10px; padding: 0.6rem 0.8rem; }
.guarantee-item i { color: #ff6b6b; }

.final-pricing { margin-bottom: 1rem; }
.pricing-display { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.3); border-radius: 14px; padding: 1rem 1.25rem; text-align: center; }
.pricing-display .price-label { display: block; font-size: 0.85rem; color: #cccccc; }
.pricing-display .price-amount { display: block; font-size: 2.2rem; font-weight: 800; color: #ff6b6b; line-height: 1; }
.pricing-display .price-features { display: block; font-size: 0.9rem; color: #dddddd; }

.security-badges { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
.security-item { display: inline-flex; align-items: center; gap: 0.5rem; color: #cccccc; background: rgba(26,26,26,0.8); border: 1px solid rgba(255,107,107,0.2); border-radius: 10px; padding: 0.5rem 0.75rem; }

/* Pulse animation utility used on purchase button */
.pulse-animation { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,107, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(255,107,107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,107, 0); }
}

/* Responsive adjustments for Shop page */
@media (max-width: 1024px) {
    .product-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .specs-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .product-info h1 { font-size: 2.1rem; }
    .highlight-row { grid-template-columns: 1fr; }
    /* Prevent thumbnail row from overflowing horizontally on small screens */
    .thumbnail-gallery { flex-wrap: wrap; gap: 0.75rem; }
    .thumbnail-gallery .thumbnail { width: 72px; height: 72px; }
    /* Disable scale transforms that can push layout width on mobile */
    .thumbnail-gallery .thumbnail:hover,
    .thumbnail-gallery .thumbnail.active { transform: none; box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); }
    /* Extra safeguard: hide any horizontal overflow in gallery wrappers */
    .product-gallery,
    .thumbnail-gallery { overflow-x: hidden; }
    /* Clip any residual overflow in hero container and grid on small screens */
    .product-hero-section .container,
    .product-hero-grid { overflow-x: clip; }
}

/* Shop Video (Jewelry in Motion) - redesigned layout */
.video-showcase-section.shop-video {
    background: linear-gradient(135deg, #141414 0%, #1e1e1e 60%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase-section.shop-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255,107,107,0.08) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(238,90,82,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.shop-video .video-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
}

.shop-video .video-wrapper {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,107,107,0.06), rgba(255,107,107,0.02));
    box-shadow: 0 20px 60px rgba(255,107,107,0.15);
}

/* Subtle gradient border */
.shop-video .video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,107,107,0.6), rgba(255,107,107,0.15));
    /* Standard mask for cross-browser compatibility */
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.shop-video .video-wrapper video {
    display: block;
}

/* Centered play overlay */
.shop-video .video-overlay {
    background: radial-gradient(circle at center, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.shop-video .play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 12px 30px rgba(255,107,107,0.35);
}

.shop-video .video-wrapper:hover .play-button { transform: scale(1.08); }

/* Details panel card */
.shop-video .video-details {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(255,107,107,0.1);
}

.shop-video .video-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.shop-video .video-details p {
    margin-bottom: 1.25rem;
}

.shop-video .video-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.shop-video .video-stats .stat-item {
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255,107,107,0.18);
}

/* Responsive tweaks for shop video */
@media (max-width: 1024px) {
    .shop-video .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .shop-video .play-button {
        width: 68px;
        height: 68px;
    }
    .shop-video .video-stats {
        grid-template-columns: 1fr;
    }
}

/* Home Video (Jewelry in Motion) - redesigned layout */
.video-showcase-section.home-video {
    background: linear-gradient(135deg, #101010 0%, #1a1a1a 50%, #242424 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase-section.home-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,107,107,0.08) 0%, transparent 45%),
                radial-gradient(circle at 20% 85%, rgba(238,90,82,0.06) 0%, transparent 45%);
    pointer-events: none;
}

/* Reverse the layout: details on the left, video on the right */
.home-video .video-container {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    gap: 3rem;
}

.home-video .video-details {
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(255, 107, 107, 0.25);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 16px 40px rgba(255,107,107,0.12);
}

.home-video .video-details h3 { font-size: 2rem; margin-bottom: 0.75rem; }
.home-video .video-details p { margin-bottom: 1.5rem; }

.home-video .video-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-video .video-stats .stat-item {
    background: rgba(255,107,107,0.06);
    border: 1px solid rgba(255,107,107,0.18);
}

.home-video .video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,107,107,0.05), rgba(255,107,107,0.02));
    box-shadow: 0 24px 64px rgba(255,107,107,0.18);
}

.home-video .video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,107,107,0.55), rgba(255,107,107,0.12));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.home-video .video-overlay { background: rgba(0,0,0,0.4); }
.home-video .play-button {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 12px 30px rgba(255,107,107,0.35);
}
.home-video .video-wrapper:hover .play-button { transform: scale(1.06); }

/* Responsive tweaks for home video */
@media (max-width: 1024px) {
    .home-video .video-container { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .home-video .video-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .home-video .video-stats { grid-template-columns: 1fr; }
    .home-video .play-button { width: 68px; height: 68px; }
}