/* CSS Custom Properties for Design System */
:root {
    /* Colors */
    --primary-color: #1a1a1a;
    --secondary-color: #595959;
    --accent-color: #b59b54; /* Muted Gold accent */
    --background-color: #ffffff;
    --surface-color: #f6f6f6;
    --border-color: #e5e5e5;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--primary-color);
    background-color: var(--background-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Utilities */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--surface-color);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Top Promo Bar */
.promo-bar {
    background-color: var(--surface-color);
    text-align: center;
    padding: var(--spacing-xs);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
}

.promo-bar a {
    text-decoration: underline;
    font-weight: 500;
    color: var(--primary-color);
}

/* Header */
.main-header {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-medium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.header-search {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    width: 250px;
}

.header-search input {
    border: none;
    outline: none;
    padding-left: 10px;
    width: 100%;
    font-family: var(--font-body);
}

.header-search i {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

.header-logo {
    text-align: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 6px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
}

.action-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.action-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) 1.5rem;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.nav-list a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--accent-color);
}

/* Large Banner / Hero Section */
.banner-hero {
    position: relative;
    height: 90vh; /* Make it large */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--spacing-md);
    color: #fff;
}

.banner-content h2 {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Made For Your Story Section */
.made-for-story {
    background-color: #f2efe9; /* Light beige from screenshot */
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.story-header {
    margin-bottom: var(--spacing-lg);
}

.story-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.story-header p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 200px;
}

.story-item img {
    width: 60px; /* Adjust size based on uploaded icons */
    height: auto;
}

.story-item span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Signature Collection */
.signature-collection {
    padding: var(--spacing-lg) 1%;
    max-width: 100%;
    margin: 0 auto;
}

.signature-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.signature-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
}

.signature-header p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.signature-layout {
    display: flex;
    gap: 1%;
}

.signature-main {
    flex: 1;
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sig-card {
    background-color: var(--surface-color);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.sig-card img {
    width: 90%;
    margin-bottom: 1.5rem;
    mix-blend-mode: multiply; /* Helps white backgrounds blend */
    transition: transform var(--transition-medium);
}

.sig-card:hover img {
    transform: scale(1.05);
}

.sig-card p {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
}

/* Categories Section */
.categories-section {
    padding: var(--spacing-xl) 1% 0; /* Increased top padding, 0 bottom padding so grid dictates bottom */
    max-width: 100%; /* Full width */
    margin: 0 auto;
}

.categories-section .section-title {
    display: block;
    margin-bottom: var(--spacing-sm); /* Decreased bottom margin */
    font-size: 2rem;
    letter-spacing: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1%; /* Small gap between images */
}

.category-card {
    text-align: center;
    display: block;
    position: relative;
    overflow: hidden;
}

.category-img-wrapper {
    overflow: hidden;
    margin-bottom: 0;
    aspect-ratio: 1; /* Square or 4/5 depending on images, 1:1 is safe for edge-to-edge */
    background-color: var(--surface-color);
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-img-wrapper img {
    transform: scale(1.04);
}

.category-card h3 {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1a1a1a;
    z-index: 2;
}

.category-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #1a1a1a;
    margin: 5px auto 0;
    transition: width 0.3s ease;
}

.category-card:hover h3::after {
    width: 80px;
}

/* Diamond Shapes Section */
.diamond-shapes-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background-color: var(--surface-color);
}

.shapes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.shape-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform var(--transition-fast);
}

.shape-card:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
}

.shape-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    border: 2px solid #fff;
}

.shape-card span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Secondary Banner */
.secondary-banner {
    display: flex;
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    background-color: #fcfcfc;
    border: 1px solid var(--border-color);
}

.secondary-banner-content {
    flex: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secondary-banner-content h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.secondary-banner-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.secondary-banner-content .btn {
    margin-bottom: 1rem;
    width: max-content;
}

.secondary-banner-img {
    flex: 1.2;
}

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

/* Inspiration Section */
.inspiration-section {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
}

.inspiration-content {
    flex: 1;
    padding: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
}

.inspiration-content h2 {
    text-align: left;
    margin-bottom: var(--spacing-sm);
    color: #fff;
}

.inspiration-content p {
    margin-bottom: var(--spacing-md);
    color: #ccc;
}

.inspiration-content .btn-outline {
    border-color: #fff;
    color: #fff;
}

.inspiration-content .btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.inspiration-image {
    flex: 1;
}

.inspiration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Footer */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

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

.footer-col a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: #fff;
}

.newsletter-col p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    width: 100%;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.footer-links a {
    color: #888;
    margin-left: 1.5rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shapes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .banner-content h2 {
        font-size: 3.5rem;
    }

    .secondary-banner {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
    }

    .header-search, .trust-banner {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .banner-content h2 {
        font-size: 2.5rem;
    }

    .banner-actions {
        flex-direction: column;
    }

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

    .inspiration-section {
        flex-direction: column-reverse;
    }

    .inspiration-content {
        margin: 0 auto;
        padding: var(--spacing-lg) var(--spacing-md);
    }

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

/* ==========================================================================
   Product Listing Page (PLP) Styles
   ========================================================================== */

.plp-main {
    padding: 20px 30px;
    max-width: 100%;
    margin: 0 auto;
}

/* Shape Filter Nav */
.shape-filter-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.shape-filter-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none; /* hide scrollbar firefox */
}
.shape-filter-scroll::-webkit-scrollbar {
    display: none; /* hide scrollbar chrome */
}

.shape-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.shape-btn.active, .shape-btn:hover {
    border: 1px solid var(--border-color);
    background-color: var(--surface-color);
}

.shape-outline {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--primary-color);
    display: inline-block;
}
/* Basic approximations of shapes for placeholder */
.shape-outline.round { border-radius: 50%; }
.shape-outline.oval { border-radius: 50%; width: 14px; }
.shape-outline.emerald { border-radius: 2px; height: 24px; width: 16px; }
.shape-outline.cushion { border-radius: 4px; }
.shape-outline.marquise { border-radius: 50% 0 50% 0; transform: rotate(45deg); }
.shape-outline.radiant { border-radius: 2px; height: 22px; width: 18px; }
.shape-outline.pear { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }


.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}
.filter-btn i { width: 16px; height: 16px; }

/* Meta */
.plp-meta {
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* Product Grid */
.plp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Reduced gap */
}

/* Product Card */
.plp-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plp-image-wrap {
    position: relative;
    background-color: #f8f8f8; /* Light gray background like screenshot */
    padding: 0; /* Remove padding so image fits full width */
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.plp-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    padding: 0.3rem 0.6rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
}

.plp-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.plp-price {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.plp-note {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
}

.plp-carat {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.plp-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.plp-shapes {
    display: flex;
    gap: 0.4rem;
}

.tiny-shape {
    width: 12px;
    height: 12px;
    border: 1px solid var(--secondary-color);
    display: inline-block;
}
.tiny-shape.round { border-radius: 50%; }
.tiny-shape.oval { border-radius: 50%; width: 8px; }
.tiny-shape.emerald { border-radius: 1px; height: 14px; width: 10px; }
.tiny-shape.cushion { border-radius: 2px; }
.tiny-shape.marquise { border-radius: 50% 0 50% 0; transform: rotate(45deg); }
.tiny-shape.pear { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }

.plp-metals {
    display: flex;
    gap: 0.5rem;
}

.metal-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ccc;
    cursor: pointer;
}
.metal-swatch.white-gold { background-color: #e8e4db; }
.metal-swatch.yellow-gold { background-color: #e6c79a; }
.metal-swatch.rose-gold { background-color: #dfbfa8; }
.metal-swatch.platinum { background-color: #e5e6e8; }

/* Responsive adjustments for PLP */
@media (max-width: 1200px) {
    .plp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .plp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .plp-grid { grid-template-columns: 1fr; }
    .shape-filter-nav { flex-direction: column; gap: 1rem; align-items: flex-start; }
}


/* NEW CARD DESIGN */
.plp-card {
    position: relative;
    padding-bottom: 20px;
}
.wishlist-heart {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    cursor: pointer;
    color: #7b2936;
}
.wishlist-heart svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.5;
}
.plp-info {
    text-align: left;
    padding: 15px 5px;
}
.plp-info h3 {
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: normal;
    line-height: 1.3;
}
.plp-price {
    font-size: 13px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 500;
}
.plp-carat {
    font-size: 11px;
    color: #666;
    margin-bottom: 12px;
}
.plp-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.plp-shapes {
    display: flex;
    gap: 8px;
}
.shape-icon {
    width: 20px;
    height: 24px;
    object-fit: contain;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s;
}
.shape-icon:hover, .shape-icon.active {
    opacity: 1;
    border-bottom: 1px solid #000;
}
.plp-metals {
    display: flex;
    gap: 12px;
    align-items: center;
}
.metal-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    position: relative;
}
.metal-swatch.active {
    border-radius: 50%;
}
.metal-swatch.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: #000;
}
.metal-swatch.white-gold { background-color: #e8e4db; }
.metal-swatch.yellow-gold { background-color: #f3d39a; }
.metal-swatch.rose-gold { background-color: #e4bea6; }
.metal-swatch.platinum { background-color: #e5e6e8; }

/* Home Page Shape Slider */
.shape-slider-section {
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    background: #fff;
}
.shape-slider-title {
    text-align: left;
    padding-left: 20px;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.shape-slider-wrap {
    position: relative;
}
.shape-slider-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: 20px;
    padding: 0 20px;
    scrollbar-width: none; /* Firefox */
}
.shape-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.shape-slide-card {
    min-width: calc(20% - 16px);
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 20px;
    text-decoration: none;
    color: #1a252f;
    position: relative;
    overflow: hidden;
}
.shape-icon-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}
.shape-svg {
    transition: opacity 0.3s ease;
    width: 100px;
    height: 100px;
}
.shape-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 4px;
}
.shape-slide-card:hover .shape-svg {
    opacity: 0;
}
.shape-slide-card:hover .shape-hover-img {
    opacity: 1;
}
.shape-name {
    z-index: 2;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}
.shape-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1a252f;
}
.shape-slider-next {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.shape-slider-next:hover {
    background: #f0f0f0;
}
.shape-slider-progress-wrap {
    padding: 0 20px;
    margin-top: 30px;
}
.shape-slider-progress-bg {
    width: 100%;
    height: 1px;
    background: #ddd;
    position: relative;
}
.shape-slider-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    background: #000;
    transition: left 0.1s linear, width 0.1s linear;
}

@media (max-width: 1000px) {
    .shape-slide-card { min-width: calc(33.333% - 14px); }
    .shape-slider-progress-bar { width: 33.333%; }
}
@media (max-width: 600px) {
    .shape-slide-card { min-width: calc(50% - 10px); }
    .shape-slider-progress-bar { width: 50%; }
}







.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}
.insta-item {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
}
.insta-item:hover img {
    transform: scale(1.1);
}
