/* Strict CSS Guidelines Followed:
  - NO direct element targeting (e.g., body, a, img)
  - NO universal selector (*)
  - All styling done via classes
*/

/* Core Resets applied directly to classes used */
.bristol-html, .bristol-body, .loader-wrapper, .loader-content, .loader-circle, .loader-text, 
.top-ad-notice, .top-ad-text, .main-header, .header-container, .logo-box, .logo-text, 
.desktop-nav, .nav-list, .nav-item, .nav-link, .header-action, .btn-primary, .hamburger-icon, 
.burger-line, .mobile-sidebar, .sidebar-top, .close-icon, .mobile-menu-list, .mobile-menu-item, 
.mobile-menu-link, .mobile-shop-text, .menu-overlay, .main-content, .animated-bg, .hero-section, 
.wrapper, .hero-layout, .hero-image-col, .hero-anim-img, .hero-text-col, .hero-title, .hero-subtitle, 
.btn-secondary, .explore-btn, .about-section, .section-header, .text-center, .section-title, 
.section-desc, .about-product-showcase, .product-info-box, .about-product-img, .product-details, 
.product-name, .product-specs, .why-section, .features-grid, .feature-card, .feature-icon, 
.feature-heading, .feature-text, .testimonials-section, .reviews-grid, .review-card, .avatar-circle, 
.review-text, .reviewer-name, .faq-section, .faq-list, .faq-item, .faq-btn, .faq-indicator, 
.faq-body, .faq-answer, .main-footer, .footer-grid, .footer-column, .footer-title, .footer-text, 
.footer-link, .footer-nav, .footer-nav-item, .modal-trigger, .footer-bottom, .footer-disclaimer, 
.footer-copyright, .modal-bg, .modal-card, .modal-close, .modal-heading, .modal-paragraph, 
.cookie-bar, .cookie-msg, .cookie-actions, .cookie-btn, .cookie-accept, .cookie-reject {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.bristol-html {
    scroll-behavior: smooth;
}

/* Variables & Theme */
.bristol-body {
    --color-dusty-rose: #DCAE96;
    --color-bright-pink-dusty: #D07A8A; 
    --color-black: #000000;
    --color-beige: #F5F5DC;
    --color-gold: #C5B358;
    --color-white: #FFFFFF;
    --color-dark-grey: #222222;
    background-color: var(--color-beige);
    color: var(--color-black);
    line-height: 1.6;
}

/* Top Ad Notice */
.top-ad-notice {
    background-color: var(--color-beige);
    text-align: center;
    padding: 8px 15px;
    border-bottom: 1px solid #ddd;
}

.top-ad-text {
    font-size: 0.85rem;
    color: #555;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-dusty-rose);
    border-top: 5px solid var(--color-gold);
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
    margin: 0 auto 15px auto;
}

.loader-text {
    color: var(--color-white);
    letter-spacing: 1.5px;
    font-size: 1.2rem;
}

@keyframes spin-loader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.main-header {
    background-color: var(--color-bright-pink-dusty);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-gold);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e6cd52;
    transform: translateY(-2px);
}

/* Mobile Menu */
.hamburger-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger-line {
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--color-black);
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 40px 30px;
}

.sidebar-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.close-icon {
    font-size: 2.5rem;
    color: var(--color-white);
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-shop-text {
    color: var(--color-gold);
    font-weight: bold;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    z-index: 1500;
    display: none;
}

/* Animated Background Main */
.animated-bg {
    background: linear-gradient(120deg, var(--color-beige), #fff0e6, var(--color-beige));
    background-size: 200% 200%;
    animation: bgShift 10s ease infinite;
}

@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sections Global */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-black);
    margin-bottom: 20px;
}

/* Hero Section */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-anim-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.hero-text-col {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: var(--color-dusty-rose);
    color: var(--color-black);
    transform: scale(1.05);
}

/* About Us */
.about-section {
    background-color: var(--color-white);
    border-radius: 20px;
    margin-top: -30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #555;
}

.about-product-showcase {
    background-color: var(--color-beige);
    padding: 30px;
    border-radius: 15px;
}

.product-info-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-product-img {
    width: 200px;
    border-radius: 10px;
}

.product-name {
    font-size: 1.5rem;
    color: var(--color-bright-pink-dusty);
    margin-bottom: 15px;
}

.product-specs {
    color: #444;
}

/* Why Us */
.features-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    flex: 1;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-heading {
    margin-bottom: 15px;
    color: var(--color-black);
}

.feature-text {
    color: #666;
}

/* Testimonials */
.reviews-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    flex: 1;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    background-color: var(--color-dusty-rose);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.reviewer-name {
    color: var(--color-black);
    font-weight: bold;
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-indicator {
    color: var(--color-gold);
    font-size: 1.5rem;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #555;
}

/* Footer */
.main-footer {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    padding-top: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-text {
    margin-bottom: 10px;
    color: #bbb;
}

.footer-nav {
    list-style: none;
}

.footer-nav-item {
    margin-bottom: 10px;
}

.footer-link {
    color: #75bbe3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-dusty-rose);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}

.footer-copyright {
    color: #aaa;
    font-size: 0.9rem;
}

/* Modals */
.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 3000;
}

.modal-card {
    background-color: var(--color-white);
    width: 90%;
    max-width: 600px;
    margin: 10vh auto;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    color: var(--color-black);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
}

.modal-close:hover {
    color: var(--color-black);
}

.modal-heading {
    margin-bottom: 20px;
    color: var(--color-bright-pink-dusty);
}

.modal-paragraph {
    margin-bottom: 15px;
    color: #444;
}

/* Cookie Banner */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2500;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.cookie-msg {
    flex: 1;
    margin-right: 20px;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-accept {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.cookie-reject {
    background-color: #555;
    color: var(--color-white);
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .product-info-box {
        flex-direction: column;
        text-align: center;
    }
    .features-grid, .reviews-grid {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .desktop-nav, .header-action {
        display: none;
    }
    .hamburger-icon {
        display: flex;
    }
    .cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-msg {
        margin-right: 0;
    }
}