/* ------------------- */
/* Basic Setup & Variables */
/* ------------------- */
:root {
    --color-pink: #FFCDCD;
    --color-red: #C53030;
    --color-gold: #D69E2E;
    --color-text-dark: #1f2937;
    --color-text-medium: #4b5563;
    --color-text-light: #f9fafb;
    --color-bg-light: #f9fafb;
    --color-bg-medium: #f3f4f6;
    --color-bg-dark: #1f2937;
    --color-white: #ffffff;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-medium);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--color-text-dark);
    line-height: 1.2;
}

p{
    font-family: Arial, Helvetica, sans-serif !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}
.text-align-left{
    text-align: left;
}

.list-style-none{
    list-style-type: disc !important;
    padding-left: 1rem;
}
.green{
    color: #02ae5b;
}
/* ------------------- */
/* Reusable Components */
/* ------------------- */
.container {
    width: 100%;
    /* max-width: 1280px; */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.section-title {
    font-size: 2.25rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-medium);
    margin-top: 0.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: var(--color-red);
}

.cta-button,
.cta-button-alt {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.cta-button:hover,
.cta-button-alt:hover {
    transform: scale(1.05);
}


/* ------------------- */
/* Product Section */
/* ------------------- */
.product-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--color-white);
}

.product-layout {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    /* align-items: center; */
}
.product-gallery{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;
}

 .product-details {
    width: 100%;
}

.main-image-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Style for the main product image transition */
.main-image {
    transition: opacity 0.4s ease-in-out;
     /* width: 100%; */
    width: 80%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.product-color-changer{
    text-align: center;
}

/* Container for the color swatches */
.product-colors {
    margin-top: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
}

.color-label {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

/* Individual color swatch styling */
.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Hover effect for the swatches */
.color-swatch:hover {
    transform: scale(1.1);
}

/* Style for the 'active' or selected color swatch */
.color-swatch.active {
    border-color: #333 !important; /* A darker border for the selected color */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

.main-sub-images{
    display: flex;
    flex-direction: row;
    gap: 10px;

    justify-content: center;
    align-items: center;
}

.main-sub-images img{
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);

    width: 20%;
    height: auto;
}

/* .main-sub-images img.active {
  outline: 2px solid #333;
  outline-offset: 4px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
} */


.thumbnail-container {
    display: flex;
    gap: 0.5rem;
}
.thumbnail {
    width: 25%;
    cursor: pointer;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}
.thumbnail:hover {
    opacity: 1;
}
.thumbnail-active {
    border-color: var(--color-red);
    opacity: 1;
}

.product-details {
    margin-top: 2rem;
}

.product-title {
    font-size: 2.5rem;
}
.product-subtitle {
    color: var(--color-red);
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}
.product-description {
    margin-top: 1rem;

    font-family: Arial, Helvetica, sans-serif !important;
}

.spec-highlights, .color-options {
    margin-top: 1.5rem;
}
.section-subheader {
    font-size: 1.25rem;
    font-weight: 700;
}
.spec-highlights ul {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.spec-highlights li {
    display: flex;
    align-items: center;
}
.bullet {
    color: var(--color-gold);
    margin-right: 0.75rem;
}

.color-swatches {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.color-swatch {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 2px solid #d1d5db;
}
.color-swatch:first-child {
    border-color: #9ca3af;
}

.price-button-container {
    margin-top: 2rem;
}
.price-button-container .cta-button {
    width: 100%;
    background-color: var(--color-red);
    color: var(--color-white);
}

/* ------------------- */
/* Features Section */
/* ------------------- */
.features-section {
    padding: 4rem 0;
    background-color: var(--color-bg-medium);
}
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
.feature-card {
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pink-card {
    background-color: var(--color-pink);
}
.gold-border-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.feature-icon {
    /* max-height: 3rem; */
    /* object-fit: contain; */
    margin-bottom: 1rem;
    color: var(--color-red);
}
.feature-icon img{
    max-height: 5rem;
    margin: auto;
    object-fit: contain;
}

.gold-icon {
    color: var(--color-gold);
}
.icon-feature {
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ------------------- */
/* Specifications Section */
/* ------------------- */
.specs-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}
.specs-table-container {
    max-width: 56rem;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    overflow: hidden;
}
.specs-table {
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
    color: var(--color-text-medium);
    border-collapse: collapse;
}
.specs-table th, .specs-table td {
    padding: 1rem 1.5rem;
}
.specs-table th {
    font-weight: 700;
    color: var(--color-text-dark);
}
.specs-table tr {
    border-bottom: 1px solid #e5e7eb;
}
.specs-table tr:last-child {
    border-bottom: none;
}
.specs-table tr:nth-child(even) {
    background-color: var(--color-bg-light);
}


/* ------------------- */
/* CTA Section */
/* ------------------- */
.cta-section {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}
.cta-title {
    color: var(--color-white);
    font-size: 2rem;
}
.cta-text {
    font-size: 1.125rem;
    margin-top: 1rem;
    /* max-width: 48rem; */
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}
.cta-button-alt {
    margin-top: 2rem;
    background-color: var(--color-white);
    color: var(--color-red);
}

/* ------------------- */
/* Footer */
/* ------------------- */
.site-footer-bottom {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: 2rem 0;
    text-align: center;
}
.footer-tagline {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* ------------------- */
/* Responsive Styles */
/* ------------------- */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: flex;
    }
    .mobile-nav-toggle {
        display: none;
    }
    
    .product-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .product-layout {
        flex-direction: row;
        gap: 3rem;
    }
    .main-image-section{
        flex-direction: row-reverse !important;

        align-items: flex-start;
    }
    .main-sub-images{
        flex-direction: column !important;
    }
    .main-sub-images img{
        width: 100%;
    }
    .product-gallery{
        width: 125% !important;

    }
    .product-details {
        width: 75% !important;
        margin-top: 0;
    }
    .product-color-changer{
        margin-left: 160px;
    }
    .product-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
}

