/* Merged CSS */

/* Source: 404.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        /* Prevent horizontal scroll */
        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- Animations --- */
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        @keyframes spill {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(45deg); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- 404 Section --- */
        .error-section {
            background-color: var(--dark-bg);
            position: relative;
            flex-grow: 1; /* Pushes footer down */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 0;
            overflow: hidden;
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 25vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        /* 404 Content */
        .error-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
        }

        .error-img {
            width: 300px;
            max-width: 100%;
            margin-bottom: 2rem;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
            animation: float 6s ease-in-out infinite;
        }

        .error-code {
            font-size: 8rem;
            font-weight: 900;
            line-height: 1;
            color: var(--accent-color);
            margin-bottom: 0;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .error-title {
            font-family: 'Dancing Script', cursive;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .error-text {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 500px;
            margin: 0 auto 2.5rem;
        }

        .btn-home {
            background-color: white;
            color: var(--dark-bg);
            border-radius: 30px;
            padding: 12px 40px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-home:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            color: white;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            position: relative;
            margin-top: auto; /* Push to bottom if content is short */
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-bg-text {
                font-size: 30vw;
            }
            .error-code {
                font-size: 6rem;
            }
        }

/* Source: about.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 12rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 5rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- About Content --- */
        .story-section {
            padding: 5rem 0;
        }

        .story-img {
            border-radius: 30px;
            width: 100%;
            height: 500px;
            object-fit: cover;
            box-shadow: 20px 20px 0 var(--card-bg);
        }

        .feature-box {
            padding: 2rem;
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            height: 100%;
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--dark-bg);
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }

        /* --- Updated Timeline Styles --- */
        .timeline {
            position: relative;
            margin: 5rem 0;
            padding: 20px 0;
        }

        /* The vertical line */
        .timeline::after {
            content: '';
            position: absolute;
            width: 3px;
            background-color: var(--card-bg);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
            border-radius: 2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            margin-bottom: 30px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        /* Left container */
        .timeline-item.left {
            left: 0;
        }

        /* Right container */
        .timeline-item.right {
            left: 50%;
        }

        /* The circles/icons on the line */
        .timeline-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            right: -25px;
            background-color: var(--dark-bg);
            border: 4px solid #fff;
            top: 20px;
            border-radius: 50%;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            box-shadow: 0 0 0 4px var(--card-bg);
        }

        .timeline-item.right .timeline-icon {
            left: -25px;
        }

        /* Content Box */
        .timeline-content {
            padding: 30px;
            background-color: white;
            position: relative;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-bottom: 4px solid var(--accent-color);
            transition: transform 0.3s;
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-5px);
        }

        .timeline-year-badge {
            background-color: var(--accent-color);
            color: var(--dark-bg);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        /* Media Queries for Timeline */
        @media screen and (max-width: 768px) {
            /* Place the timelime to the left */
            .timeline::after {
                left: 31px;
            }
            
            /* Full-width containers */
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            /* Make sure all containers are same side */
            .timeline-item.left, .timeline-item.right {
                left: 0;
            }
            
            /* Make sure all icons are same side */
            .timeline-item.left .timeline-icon, .timeline-item.right .timeline-icon {
                left: 6px;
            }
        }

        /* Team */
        .team-card {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
        }

        .team-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .team-card:hover .team-img {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
        }

        .team-social a {
            color: white;
            margin-right: 10px;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        .team-social a:hover {
            color: var(--accent-color);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        @media (max-width: 991px) {
            .hero-title { font-size: 3.5rem; }
            .story-img { height: 300px; margin-bottom: 2rem; box-shadow: none; }
        }

/* Source: blog-details.html */
:root {
            --primary-bg: #F3E0D3;
            --dark-bg: #1F1F1F;
            --accent-color: #DFA878;
            --card-bg: #EACFB6;
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff; /* White background for reading */
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Blog Header --- */
        .blog-header {
            background-color: var(--primary-bg);
            padding-top: 5rem;
            padding-bottom: 8rem;
            text-align: center;
            position: relative;
        }

        .blog-meta-top {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .blog-title-main {
            font-family: 'Merriweather', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--dark-bg);
            max-width: 900px;
            margin: 0 auto 2rem;
            line-height: 1.2;
        }

        /* --- Article Content --- */
        .article-container {
            max-width: 800px;
            margin: -5rem auto 5rem; /* Pull up over the header */
            position: relative;
            z-index: 10;
        }

        .featured-image-wrapper {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .featured-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .article-body {
            font-family: 'Merriweather', serif;
            font-size: 1.15rem;
            line-height: 1.9;
            color: #333;
        }

        .article-body p {
            margin-bottom: 1.5rem;
        }

        .article-body h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            color: var(--dark-bg);
        }

        .article-body blockquote {
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
            margin: 2.5rem 0;
            font-style: italic;
            color: #555;
            font-size: 1.3rem;
        }

        /* Author Box */
        .author-box {
            background: #f9f9f9;
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            align-items: center;
            margin-top: 4rem;
            border: 1px solid #eee;
        }

        .author-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
        }

        /* Related Posts */
        .related-posts-section {
            background: var(--dark-bg);
            padding: 5rem 0;
            color: white;
            border-radius: 50px 50px 0 0;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-img-wrapper {
            height: 200px;
            overflow: hidden;
        }

        .blog-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            padding: 20px;
            color: var(--dark-bg);
        }

        .blog-title-sm {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .btn-read-sm {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--accent-color);
            text-decoration: none;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 0;
            position: relative;
        }
        
        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        @media (max-width: 991px) {
            .blog-title-main { font-size: 2.5rem; }
            .article-container { margin-top: -3rem; padding: 0 15px; }
        }

/* Source: blog.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 12rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 6rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Blog Cards --- */
        .blog-card {
            background: transparent;
            border: none;
            transition: transform 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-img-wrapper {
            border-radius: 20px;
            overflow: hidden;
            height: 250px;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .blog-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .blog-card:hover .blog-img-wrapper img {
            transform: scale(1.05);
        }

        .blog-title {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: var(--dark-bg);
        }

        .blog-meta {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .blog-text {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Show less text for cleaner look */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .btn-read-more {
            background-color: transparent;
            color: var(--dark-bg);
            border: 2px solid #D3C0B2;
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        
        .btn-read-more:hover {
            background-color: var(--dark-bg);
            border-color: var(--dark-bg);
            color: white;
        }

        /* --- Featured Post --- */
        .featured-post {
            border-radius: 30px;
            overflow: hidden;
            background: white;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            margin-bottom: 4rem;
        }

        .featured-img {
            height: 400px;
            width: 100%;
            object-fit: cover;
        }

        /* --- Pagination --- */
        .pagination .page-link {
            border: none;
            color: var(--dark-bg);
            background: transparent;
            font-weight: 600;
            margin: 0 5px;
            border-radius: 50% !important;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pagination .page-item.active .page-link {
            background-color: var(--dark-bg);
            color: white;
        }

        .pagination .page-link:hover {
            background-color: #e0e0e0;
            color: var(--dark-bg);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .featured-img {
                height: 250px;
            }
        }

/* Source: cart.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        /* Prevent horizontal scroll */
        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 10rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 6rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Cart Styles --- */
        .cart-container {
            background: white;
            border-radius: 30px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            padding: 2rem;
        }

        .cart-table {
            width: 100%;
            border-collapse: collapse;
        }

        .cart-table th {
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            color: #888;
            padding-bottom: 1rem;
            border-bottom: 2px solid #eee;
        }

        .cart-table td {
            padding: 1.5rem 0;
            vertical-align: middle;
            border-bottom: 1px solid #f5f5f5;
        }

        .cart-product-img {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            object-fit: cover;
            margin-right: 15px;
        }

        .quantity-control {
            display: inline-flex;
            align-items: center;
            background: #f5f5f5;
            border-radius: 20px;
            padding: 5px 10px;
        }

        .qty-btn {
            background: none;
            border: none;
            color: var(--dark-bg);
            font-weight: bold;
            cursor: pointer;
            width: 25px;
        }

        .qty-input {
            width: 30px;
            border: none;
            background: transparent;
            text-align: center;
            font-weight: 600;
        }

        .remove-btn {
            color: #ff6b6b;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s;
        }

        .remove-btn:hover {
            color: #d63031;
        }

        .cart-summary {
            background: var(--dark-bg);
            color: white;
            border-radius: 30px;
            padding: 2rem;
            height: 100%;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .summary-total {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1rem;
            margin-top: 1rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .btn-checkout {
            background-color: var(--accent-color);
            color: var(--dark-bg);
            border: none;
            width: 100%;
            padding: 15px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2rem;
            transition: all 0.3s;
        }

        .btn-checkout:hover {
            background-color: white;
            transform: translateY(-2px);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }
        @media (max-width: 768px) {
            .cart-table thead { display: none; }
            .cart-table tr { display: block; border-bottom: 2px solid #eee; margin-bottom: 20px; }
            .cart-table td { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border: none; }
            .cart-table td::before { content: attr(data-label); font-weight: bold; color: #888; }
            .cart-product-cell { flex-direction: row; align-items: center; }
        }

/* Source: checkout.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        /* Prevent horizontal scroll */
        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 10rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 6rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Checkout Styles --- */
        .checkout-container {
            background: white;
            border-radius: 30px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            padding: 2.5rem;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            color: #555;
        }

        .form-control {
            border-radius: 15px;
            padding: 12px 20px;
            border: 2px solid #eee;
            background-color: #f9f9f9;
            transition: all 0.3s;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--accent-color);
            background-color: white;
        }

        .cart-summary {
            background: var(--dark-bg);
            color: white;
            border-radius: 30px;
            padding: 2rem;
            height: 100%;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .summary-total {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1rem;
            margin-top: 1rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .btn-place-order {
            background-color: var(--accent-color);
            color: var(--dark-bg);
            border: none;
            width: 100%;
            padding: 15px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2rem;
            transition: all 0.3s;
        }

        .btn-place-order:hover {
            background-color: white;
            transform: translateY(-2px);
        }

        .payment-option {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .payment-option:hover, .payment-option.active {
            background: rgba(255,255,255,0.1);
            border-color: var(--accent-color);
        }

        .payment-option input {
            margin-right: 15px;
            accent-color: var(--accent-color);
        }

        .order-item-mini {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .order-item-mini img {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 15px;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

/* Source: contect.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 12rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 5rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Contact Styles --- */
        .contact-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .form-control, .form-select {
            border-radius: 15px;
            padding: 12px 20px;
            border: 2px solid #eee;
            background-color: #f9f9f9;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--accent-color);
            background-color: white;
        }

        .btn-send {
            background-color: var(--dark-bg);
            color: white;
            border-radius: 30px;
            padding: 12px 40px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-send:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        .info-box {
            padding: 30px;
            height: 100%;
            background-color: var(--dark-bg);
            color: white;
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-icon {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 20px;
            margin-top: 5px;
        }

        .info-title {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-text {
            color: #aaa;
            font-size: 0.9rem;
            margin: 0;
        }

        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 30px;
            overflow: hidden;
            margin-top: 30px;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

/* Source: faq.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa; /* Slightly off-white for better contrast */
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 12rem;
            padding-bottom: 8rem;
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 5rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Search Box --- */
        .faq-search-wrapper {
            position: relative;
            z-index: 20;
            margin-top: -3rem;
            margin-bottom: 4rem;
        }

        .faq-search-box {
            background: white;
            padding: 10px;
            border-radius: 50px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-search-input {
            border: none;
            padding: 15px 25px;
            width: 100%;
            outline: none;
            font-size: 1rem;
            border-radius: 50px;
        }

        .faq-search-btn {
            background: var(--dark-bg);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .faq-search-btn:hover {
            background: var(--accent-color);
            color: var(--dark-bg);
        }

        /* --- FAQ Content --- */
        .faq-container {
            max-width: 900px;
            margin: 0 auto 5rem;
            position: relative;
            z-index: 10;
        }

        /* Floating Cards Style */
        .accordion-item {
            border: none;
            border-radius: 20px !important;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            overflow: hidden;
            background: white;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .accordion-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .accordion-button {
            background-color: white;
            color: var(--dark-bg);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 25px 30px;
            box-shadow: none !important;
            border-radius: 20px !important;
        }

        /* Updated active state background color */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-bg);
            color: var(--dark-bg);
            padding-bottom: 25px;
        }

        .accordion-button::after {
            background-size: 1.5rem;
            transition: transform 0.3s;
        }

        .accordion-body {
            padding: 0 30px 25px;
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .faq-category {
            font-weight: 700;
            color: var(--dark-bg);
            margin: 50px 0 25px;
            font-size: 1.8rem;
            position: relative;
            display: inline-block;
            font-family: 'Dancing Script', cursive;
        }

        /* Help Box */
        .help-box {
            background: var(--dark-bg);
            color: white;
            border-radius: 30px;
            padding: 4rem 2rem;
            text-align: center;
            margin-top: 5rem;
            position: relative;
            overflow: hidden;
        }

        .help-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        @media (max-width: 991px) {
            .hero-title { font-size: 3.5rem; }
            .faq-container { padding: 0 15px; }
        }

/* Source: home.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes morph {
            0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
            100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
        }

        @keyframes steam-rise {
            0% { opacity: 0; transform: translateY(0) scale(1); filter: blur(5px); }
            20% { opacity: 0.6; filter: blur(8px); }
            100% { opacity: 0; transform: translateY(-60px) scale(2); filter: blur(15px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float-particle {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.2; }
            90% { opacity: 0.2; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 10rem;
            padding-bottom: 12rem;
            min-height: 85vh; 
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 15vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .floating-bean {
            position: absolute;
            color: var(--accent-color);
            opacity: 0;
            z-index: 1;
            animation: float-particle 15s linear infinite;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: left;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 6rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 2.5rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        .btn-shop {
            background-color: white;
            color: black;
            border-radius: 50px;
            padding: 15px 40px; 
            font-weight: 600;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 10;
            transition: color 0.4s;
            animation: fadeInUp 1s ease-out 0.4s backwards;
            font-size: 1.1rem;
        }

        .btn-shop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--accent-color);
            z-index: -1;
            transition: width 0.4s ease;
            border-radius: 50px;
        }

        .btn-shop:hover {
            color: white;
        }
        .btn-shop:hover::before {
            width: 100%;
        }

        .hero-img-container {
            position: relative;
            z-index: 10;
            padding-top: 30px;
        }

        .hero-cup {
            width: 100%;
            max-width: 500px; 
            aspect-ratio: 1/1; 
            object-fit: cover;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.1), 
                        0 25px 50px rgba(0,0,0,0.4);
            margin-bottom: -180px; 
            position: relative;
            z-index: 20;
            background: #fff;
            animation: float 6s ease-in-out infinite, morph 8s ease-in-out infinite;
            transition: all 0.5s ease;
        }
        
        .hero-cup:hover {
             transform: translateY(-20px) scale(1.02);
             box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.3), 
                        0 30px 70px rgba(0,0,0,0.5);
        }
        
        .steam-container {
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
            z-index: 15;
            pointer-events: none;
        }

        .steam {
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            opacity: 0;
        }

        .steam:nth-child(1) { animation: steam-rise 3s infinite 0s; left: 40%; }
        .steam:nth-child(2) { animation: steam-rise 4s infinite 1s; left: 60%; }
        .steam:nth-child(3) { animation: steam-rise 3.5s infinite 2s; left: 50%; }

        .hero-beans-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1550950158-d0d960dff51b?q=80&w=1000&auto=format&fit=crop');
            background-size: cover;
            opacity: 0.15;
            pointer-events: none;
        }

        /* --- Section Titles --- */
        .section-title {
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            color: var(--dark-bg);
        }

        .section-title p {
            font-family: 'Dancing Script', cursive;
            font-size: 1.3rem;
            color: var(--accent-color);
        }

        /* --- New Sections Styles --- */
        .text-accent {
            color: var(--accent-color);
        }
        
        .letter-spacing-2 {
            letter-spacing: 2px;
        }

        .about-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 2rem;
        }
        
        .about-img-wrapper img {
            transition: transform 0.5s ease;
        }
        
        .about-img-wrapper:hover img {
            transform: scale(1.05);
        }

        /* --- Top Categories --- */
        .category-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .category-card:hover img {
            transform: scale(1.15);
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding-bottom: 30px;
            transition: background 0.3s;
        }
        
        .category-card:hover .category-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
        }

        .category-name {
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 10px;
            transform: translateY(0);
            transition: transform 0.3s;
        }

        .category-link {
            color: var(--accent-color);
            font-size: 0.9rem;
            text-decoration: none;
            border-bottom: 1px solid var(--accent-color);
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .category-link:hover {
            opacity: 1;
            color: #fff;
            border-color: #fff;
        }

        /* --- Top Milk Shakes --- */
        .shake-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 20px;
            position: relative;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .shake-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }

        .like-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255,255,255,0.9);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            color: var(--accent-color);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            z-index: 5; /* Ensure badge is above image */
        }

        .shake-img-container {
            width: 100%;
            height: 250px;
            margin-bottom: 15px;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff; /* Fallback background */
        }

        .shake-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .shake-card:hover .shake-img {
            transform: scale(1.1);
        }

        .shake-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .shake-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 10px;
            background: rgba(255,255,255,0.3);
            border-radius: 15px;
            padding: 10px 15px;
        }

        .shake-price {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--dark-bg);
        }

        .btn-buy {
            background-color: #6c5a50;
            color: white;
            border-radius: 20px;
            padding: 6px 18px;
            font-size: 0.75rem;
            font-weight: 700;
            border: none;
            text-transform: uppercase;
            transition: background 0.3s;
        }
        
        .btn-buy:hover {
            background-color: var(--dark-bg);
        }

        /* --- Latest Blogs --- */
        .blog-card {
            background: transparent;
            border: none;
            transition: transform 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-img-wrapper {
            border-radius: 20px;
            overflow: hidden;
            height: 200px;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .blog-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .blog-card:hover .blog-img-wrapper img {
            transform: scale(1.05);
        }

        .blog-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--dark-bg);
        }

        .blog-text {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Show less text for cleaner look */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .btn-read-more {
            background-color: transparent;
            color: var(--dark-bg);
            border: 2px solid #D3C0B2;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        
        .btn-read-more:hover {
            background-color: var(--dark-bg);
            border-color: var(--dark-bg);
            color: white;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        /* Decorative top border for footer */
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; /* Subtle slide effect */
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-cup {
                max-width: 300px;
                margin-bottom: -100px;
            }
            .hero-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
             .hero-section {
                text-align: center;
                padding-bottom: 10rem;
                min-height: auto;
            }
            .hero-img-container {
                margin-top: 3rem;
            }
            .hero-cup {
                margin-bottom: -180px; 
            }
            .steam-container { left: 50%; }
        }

/* Source: login.html */
:root {
            --primary-bg: #F3E0D3;
            --dark-bg: #1F1F1F;
            --accent-color: #DFA878;
            --card-bg: #EACFB6;
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .wrapper {
            display: flex;
            width: 100%;
            align-items: stretch;
        }

        /* --- Sidebar --- */
        #sidebar {
            min-width: 250px;
            max-width: 250px;
            background: var(--dark-bg);
            color: #fff;
            transition: all 0.3s;
            min-height: 100vh;
        }

        #sidebar.active {
            margin-left: -250px;
        }

        #sidebar .sidebar-header {
            padding: 20px;
            background: rgba(0,0,0,0.2);
            text-align: center;
        }

        #sidebar ul.components {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        #sidebar ul li a {
            padding: 15px 20px;
            font-size: 1rem;
            display: block;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        #sidebar ul li a:hover, #sidebar ul li.active > a {
            color: var(--accent-color);
            background: rgba(255,255,255,0.05);
            border-left: 4px solid var(--accent-color);
        }

        #sidebar ul li a i {
            width: 20px;
            text-align: center;
        }

        /* --- Content --- */
        #content {
            width: 100%;
            padding: 20px;
            min-height: 100vh;
            transition: all 0.3s;
        }

        .admin-navbar {
            padding: 15px;
            background: #fff;
            border: none;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-toggle {
            background: var(--dark-bg);
            color: white;
            border: none;
            border-radius: 10px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* --- Settings Styles --- */
        .settings-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }

        .card-header-custom {
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 20px;
            margin-bottom: 25px;
        }

        .card-title {
            font-weight: 700;
            color: var(--dark-bg);
            margin: 0;
        }

        .profile-upload {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .profile-img-large {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 4px solid #f8f9fa;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: #555;
        }

        .form-control {
            border-radius: 10px;
            border: 1px solid #eee;
            padding: 10px 15px;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--accent-color);
        }

        .btn-save {
            background-color: var(--accent-color);
            color: var(--dark-bg);
            border: none;
            padding: 10px 30px;
            border-radius: 20px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-save:hover {
            background-color: var(--dark-bg);
            color: white;
        }

        /* Toggle Switch */
        .form-check-input:checked {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }

        .brand-logo {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-color);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            #sidebar { margin-left: -250px; }
            #sidebar.active { margin-left: 0; }
        }

/* Source: media.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 12rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10vw; /* Slightly smaller for 'GALLERY' */
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 5rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Gallery Styles --- */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
            height: 300px; /* Fixed height for uniformity */
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-icon {
            color: white;
            font-size: 2rem;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-icon {
            transform: translateY(0);
        }

        /* Video Section */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Instagram Feed Section */
        .insta-feed {
            background-color: white;
            padding: 3rem 0;
            border-radius: 30px;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

/* Source: menu.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes morph {
            0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
            100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
        }

        @keyframes steam-rise {
            0% { opacity: 0; transform: translateY(0) scale(1); filter: blur(5px); }
            20% { opacity: 0.6; filter: blur(8px); }
            100% { opacity: 0; transform: translateY(-60px) scale(2); filter: blur(15px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float-particle {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.2; }
            90% { opacity: 0.2; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 10rem;
            padding-bottom: 12rem;
            min-height: 85vh; 
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 15vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .floating-bean {
            position: absolute;
            color: var(--accent-color);
            opacity: 0;
            z-index: 1;
            animation: float-particle 15s linear infinite;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: left;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 6rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 2.5rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        .btn-shop {
            background-color: white;
            color: black;
            border-radius: 50px;
            padding: 15px 40px; 
            font-weight: 600;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 10;
            transition: color 0.4s;
            animation: fadeInUp 1s ease-out 0.4s backwards;
            font-size: 1.1rem;
        }

        .btn-shop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--accent-color);
            z-index: -1;
            transition: width 0.4s ease;
            border-radius: 50px;
        }

        .btn-shop:hover {
            color: white;
        }
        .btn-shop:hover::before {
            width: 100%;
        }

        .hero-img-container {
            position: relative;
            z-index: 10;
            padding-top: 30px;
        }

        .hero-cup {
            width: 100%;
            max-width: 500px; 
            aspect-ratio: 1/1; 
            object-fit: cover;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.1), 
                        0 25px 50px rgba(0,0,0,0.4);
            margin-bottom: -180px; 
            position: relative;
            z-index: 20;
            background: #fff;
            animation: float 6s ease-in-out infinite, morph 8s ease-in-out infinite;
            transition: all 0.5s ease;
        }
        
        .hero-cup:hover {
             transform: translateY(-20px) scale(1.02);
             box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.3), 
                        0 30px 70px rgba(0,0,0,0.5);
        }
        
        .steam-container {
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
            z-index: 15;
            pointer-events: none;
        }

        .steam {
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            opacity: 0;
        }

        .steam:nth-child(1) { animation: steam-rise 3s infinite 0s; left: 40%; }
        .steam:nth-child(2) { animation: steam-rise 4s infinite 1s; left: 60%; }
        .steam:nth-child(3) { animation: steam-rise 3.5s infinite 2s; left: 50%; }

        .hero-beans-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1550950158-d0d960dff51b?q=80&w=1000&auto=format&fit=crop');
            background-size: cover;
            opacity: 0.15;
            pointer-events: none;
        }

        /* --- Section Titles --- */
        .section-title {
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            color: var(--dark-bg);
        }

        .section-title p {
            font-family: 'Dancing Script', cursive;
            font-size: 1.3rem;
            color: var(--accent-color);
        }

        /* --- Top Categories --- */
        .category-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .category-card:hover img {
            transform: scale(1.15);
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding-bottom: 30px;
            transition: background 0.3s;
        }
        
        .category-card:hover .category-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
        }

        .category-name {
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 10px;
            transform: translateY(0);
            transition: transform 0.3s;
        }

        .category-link {
            color: var(--accent-color);
            font-size: 0.9rem;
            text-decoration: none;
            border-bottom: 1px solid var(--accent-color);
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .category-link:hover {
            opacity: 1;
            color: #fff;
            border-color: #fff;
        }

        /* --- Top Milk Shakes --- */
        .shake-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 20px;
            position: relative;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .shake-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }

        .like-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255,255,255,0.9);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            color: var(--accent-color);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            z-index: 5; /* Ensure badge is above image */
        }

        .shake-img-container {
            width: 100%;
            height: 250px;
            margin-bottom: 15px;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff; /* Fallback background */
        }

        .shake-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .shake-card:hover .shake-img {
            transform: scale(1.1);
        }

        .shake-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .shake-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 10px;
            background: rgba(255,255,255,0.3);
            border-radius: 15px;
            padding: 10px 15px;
        }

        .shake-price {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--dark-bg);
        }

        .btn-buy {
            background-color: #6c5a50;
            color: white;
            border-radius: 20px;
            padding: 6px 18px;
            font-size: 0.75rem;
            font-weight: 700;
            border: none;
            text-transform: uppercase;
            transition: background 0.3s;
        }
        
        .btn-buy:hover {
            background-color: var(--dark-bg);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        /* Decorative top border for footer */
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; /* Subtle slide effect */
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        /* --- Menu Page Styles --- */
        .menu-filter-btn {
            background: transparent;
            border: 2px solid var(--dark-bg);
            color: var(--dark-bg);
            padding: 8px 25px;
            border-radius: 30px;
            font-weight: 600;
            margin: 0 5px 10px;
            transition: all 0.3s;
        }

        .menu-filter-btn:hover, .menu-filter-btn.active {
            background: var(--dark-bg);
            color: white;
        }

        /* Utility to hide pages */
        .d-none {
            display: none !important;
        }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .hero-cup {
                max-width: 300px;
                margin-bottom: -100px;
            }
            .hero-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
             .hero-section {
                text-align: center;
                padding-bottom: 10rem;
                min-height: auto;
            }
            .hero-img-container {
                margin-top: 3rem;
            }
            .hero-cup {
                margin-bottom: -180px; 
            }
            .steam-container { left: 50%; }
        }

/* Source: order-confirmation.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        /* Prevent horizontal scroll */
        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes popIn {
            0% { transform: scale(0); opacity: 0; }
            60% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            /* Adjusted padding to center content vertically on screen */
            padding-top: 8rem;
            padding-bottom: 8rem; 
            min-height: 90vh; /* Ensure it covers most of the viewport */
            display: flex;
            align-items: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 20%; /* Offset to left to not interfere with card */
            transform: translate(-50%, -50%);
            font-size: 12vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        /* Removed bottom wave to keep look clean on full height screen or kept low */
        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 5rem;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Confirmation Card Styles --- */
        .confirmation-card {
            background: white;
            border-radius: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            padding: 3rem 2rem;
            text-align: center;
            max-width: 500px;
            margin: 0 auto; /* Center in column */
            position: relative;
            z-index: 20;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .success-icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--dark-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s backwards;
        }

        .success-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
        }

        .order-id {
            background: #f8f9fa;
            padding: 10px 20px;
            border-radius: 10px;
            display: inline-block;
            font-family: monospace;
            font-size: 1.1rem;
            color: #555;
            margin: 1.5rem 0;
            border: 1px dashed #ccc;
        }

        .btn-home {
            background-color: var(--dark-bg);
            color: white;
            border-radius: 30px;
            padding: 12px 40px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-home:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            color: var(--dark-bg);
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .hero-section {
                padding-top: 8rem;
                padding-bottom: 8rem;
                min-height: auto;
                text-align: center;
            }
            .hero-title {
                font-size: 3.5rem;
            }
            .hero-bg-text {
                top: 20%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 0; /* Remove top margin as hero covers screen */
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

/* Source: product-details.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Breadcrumb & Hero --- */
        .page-header {
            padding-top: 8rem;
            padding-bottom: 2rem;
            text-align: center;
        }

        .breadcrumb {
            justify-content: center;
            background: transparent;
            margin-bottom: 0;
        }

        .breadcrumb-item a {
            color: var(--dark-bg);
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item.active {
            color: var(--accent-color);
        }

        /* --- Product Details --- */
        .product-section {
            padding: 4rem 0;
        }

        .product-image-wrapper {
            background: white;
            border-radius: 40px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .product-main-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-image-wrapper:hover .product-main-img {
            transform: scale(1.05);
        }

        .product-info {
            padding-left: 2rem;
        }

        .product-title {
            font-family: 'Dancing Script', cursive;
            font-size: 3.5rem;
            color: var(--dark-bg);
            margin-bottom: 0.5rem;
        }

        .product-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .product-desc {
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        /* Options Form */
        .option-group {
            margin-bottom: 1.5rem;
        }

        .option-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
            color: var(--dark-bg);
        }

        .size-selector input[type="radio"] {
            display: none;
        }

        .size-selector label {
            display: inline-block;
            padding: 10px 20px;
            border: 2px solid #ddd;
            border-radius: 15px;
            margin-right: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .size-selector input[type="radio"]:checked + label {
            background-color: var(--dark-bg);
            color: white;
            border-color: var(--dark-bg);
        }

        .custom-select {
            border: 2px solid #ddd;
            border-radius: 15px;
            padding: 10px 15px;
            width: 100%;
            background-color: white;
            outline: none;
        }

        /* Actions */
        .product-actions {
            display: flex;
            gap: 20px;
            margin-top: 2rem;
            align-items: center;
        }

        .qty-input-group {
            display: flex;
            align-items: center;
            border: 2px solid var(--dark-bg);
            border-radius: 30px;
            padding: 5px 10px;
        }

        .qty-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            padding: 0 10px;
            cursor: pointer;
        }

        .qty-value {
            width: 40px;
            text-align: center;
            border: none;
            background: transparent;
            font-weight: 700;
        }

        .btn-add-cart {
            background-color: var(--accent-color);
            color: var(--dark-bg);
            border: none;
            padding: 12px 40px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            flex-grow: 1;
            transition: all 0.3s;
        }

        .btn-add-cart:hover {
            background-color: var(--dark-bg);
            color: white;
            transform: translateY(-3px);
        }

        /* Tabs */
        .nav-tabs {
            border-bottom: 2px solid #ddd;
            margin-top: 4rem;
            margin-bottom: 2rem;
        }

        .nav-tabs .nav-link {
            border: none;
            color: #888;
            font-weight: 600;
            padding: 10px 20px;
            background: transparent;
        }

        .nav-tabs .nav-link.active {
            color: var(--dark-bg);
            border-bottom: 3px solid var(--accent-color);
        }

        /* Related Products */
        .related-section {
            background: white;
            padding: 4rem 0;
            margin-top: 4rem;
            border-radius: 50px 50px 0 0;
        }

        .shake-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s;
        }

        .shake-card:hover {
            transform: translateY(-5px);
        }

        .shake-img {
            height: 180px;
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .shake-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }

        .btn-buy-mini {
            background-color: var(--dark-bg);
            color: white;
            border: none;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 0;
            position: relative;
        }
        
        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        @media (max-width: 991px) {
            .product-info { padding-left: 0; margin-top: 2rem; }
            .product-title { font-size: 2.5rem; }
        }

/* Source: term.html */
:root {
            --primary-bg: #F3E0D3; /* Light Peach/Beige */
            --dark-bg: #1F1F1F;     /* Dark Grey/Black */
            --accent-color: #DFA878; /* Coffee Gold/Orange */
            --card-bg: #EACFB6;     /* Slightly darker beige for cards */
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 12rem;
            padding-bottom: 8rem;
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 10px;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 180px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-text-small {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            display: block;
            transform-origin: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-weight: 700;
            font-size: 5rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s backwards;
            position: relative;
            z-index: 10;
        }

        /* --- Legal Content --- */
        .legal-container {
            max-width: 900px;
            margin: -5rem auto 5rem;
            position: relative;
            z-index: 10;
            background: white;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            padding: 3rem;
            overflow: hidden;
        }

        .nav-tabs {
            border-bottom: 2px solid #eee;
            margin-bottom: 2rem;
        }

        .nav-tabs .nav-link {
            border: none;
            color: #888;
            font-weight: 600;
            padding: 15px 25px;
            background: transparent;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        .nav-tabs .nav-link:hover {
            color: var(--dark-bg);
        }

        .nav-tabs .nav-link.active {
            color: var(--dark-bg);
            border-bottom: 3px solid var(--accent-color);
            background: transparent;
        }

        .legal-content h3 {
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--dark-bg);
        }

        .legal-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .legal-content ul {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .legal-content li {
            margin-bottom: 0.5rem;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 6rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        @media (max-width: 991px) {
            .hero-title { font-size: 3.5rem; }
            .legal-container { padding: 2rem; margin-top: -3rem; margin-left: 15px; margin-right: 15px; }
        }

/* Source: track-order.html */
:root {
            --primary-bg: #F3E0D3;
            --dark-bg: #1F1F1F;
            --accent-color: #DFA878;
            --card-bg: #EACFB6;
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.33); }
            80%, 100% { opacity: 0; }
        }

        @keyframes pulse-dot {
            0% { transform: scale(0.8); }
            50% { transform: scale(1); }
            100% { transform: scale(0.8); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 10rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-title {
            font-weight: 700;
            font-size: 3.5rem;
            color: #fff;
            position: relative;
            z-index: 10;
            margin: 0;
        }

        /* --- Tracking Container --- */
        .tracking-container {
            margin-top: -3rem;
            position: relative;
            z-index: 20;
            margin-bottom: 5rem;
        }

        .tracking-card {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }

        /* Progress Bar */
        .track-progress {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin: 40px 0 60px;
        }

        .track-progress::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #f0f0f0;
            z-index: 0;
        }

        .step {
            position: relative;
            z-index: 1;
            text-align: center;
            width: 25%;
        }

        .step-icon {
            width: 35px;
            height: 35px;
            background: #f0f0f0;
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .step.active .step-icon {
            background: var(--dark-bg);
            color: var(--accent-color);
            box-shadow: 0 0 0 5px rgba(31, 31, 31, 0.1);
        }

        .step.completed .step-icon {
            background: var(--accent-color);
            color: var(--dark-bg);
        }

        /* Progress Line Fill */
        .progress-line-fill {
            position: absolute;
            top: 15px;
            left: 0;
            height: 4px;
            background: var(--accent-color);
            width: 66%; /* Adjust based on status */
            z-index: 0;
            transition: width 1s ease;
        }

        .step-label {
            font-weight: 600;
            font-size: 0.85rem;
            color: #aaa;
        }

        .step.active .step-label {
            color: var(--dark-bg);
        }

        /* Pulsing Dot for Active Step */
        .step.active .step-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--accent-color);
            animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }

        /* Map Placeholder */
        .map-wrapper {
            background-color: #e9ecef;
            border-radius: 20px;
            height: 300px;
            width: 100%;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .map-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.5);
        }

        /* Order Details */
        .order-meta {
            background: #fcfcfc;
            border-radius: 20px;
            padding: 25px;
            border: 1px solid #f0f0f0;
        }

        .item-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .item-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.95rem;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }

        .item-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .driver-info {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--dark-bg);
            color: white;
            padding: 15px 25px;
            border-radius: 20px;
            margin-top: 20px;
        }

        .driver-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-color);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 0;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }

        @media (max-width: 768px) {
            .track-progress { margin: 30px 0 40px; }
            .step-label { font-size: 0.7rem; }
        }

/* Source: user-profile.html */
:root {
            --primary-bg: #F3E0D3;
            --dark-bg: #1F1F1F;
            --accent-color: #DFA878;
            --card-bg: #EACFB6;
            --text-dark: #1F1F1F;
            --text-light: #F3E0D3;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--primary-bg);
            padding: 1.5rem 0 0 0;
            width: 100%;
            z-index: 1000;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--dark-bg);
        }

        .nav-link {
            color: var(--dark-bg) !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: var(--dark-bg);
            color: var(--primary-bg) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
            color: var(--dark-bg);
            text-decoration: none;
        }

        .icon-btn:hover {
            background: var(--dark-bg);
            color: var(--primary-bg);
            transform: rotate(10deg);
        }

        /* --- Hero Section (Short) --- */
        .hero-section {
            background-color: var(--dark-bg);
            position: relative;
            padding-top: 10rem;
            padding-bottom: 6rem;
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: visible; 
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .custom-shape-divider-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .custom-shape-divider-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-top .shape-fill {
            fill: var(--primary-bg);
        }

        .hero-title {
            font-weight: 700;
            font-size: 3.5rem;
            color: #fff;
            position: relative;
            z-index: 10;
            margin: 0;
        }

        /* --- Profile Layout --- */
        .profile-container {
            margin-top: -3rem;
            position: relative;
            z-index: 20;
            margin-bottom: 5rem;
        }

        .profile-sidebar {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .user-info {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .user-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--accent-color);
            padding: 3px;
        }

        .nav-pills .nav-link {
            color: #666;
            font-weight: 600;
            padding: 12px 20px;
            border-radius: 15px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .nav-pills .nav-link:hover, .nav-pills .nav-link.active {
            background-color: var(--dark-bg);
            color: white;
        }

        .nav-pills .nav-link i {
            width: 20px;
            text-align: center;
        }

        .profile-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }

        .content-title {
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            color: var(--dark-bg);
        }

        /* Forms */
        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: #555;
        }

        .form-control {
            border-radius: 10px;
            padding: 10px 15px;
            border: 1px solid #eee;
            background-color: #f9f9f9;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--accent-color);
            background-color: white;
        }

        .btn-save {
            background-color: var(--accent-color);
            color: var(--dark-bg);
            border: none;
            padding: 10px 30px;
            border-radius: 20px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-save:hover {
            background-color: var(--dark-bg);
            color: white;
        }

        /* Order History Table */
        .order-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 10px;
        }

        .order-table th {
            color: #888;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            padding: 10px 15px;
            border: none;
        }

        .order-table td {
            background: #fcfcfc;
            padding: 15px;
            border: none;
            vertical-align: middle;
            font-size: 0.95rem;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }

        .order-table tr td:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            border-left: 1px solid #f0f0f0;
        }

        .order-table tr td:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            border-right: 1px solid #f0f0f0;
        }

        .status-badge {
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .status-delivered { background: #d4edda; color: #155724; }
        .status-processing { background: #cce5ff; color: #004085; }
        .status-cancelled { background: #f8d7da; color: #721c24; }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding-top: 5rem;
            margin-top: 0;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: var(--dark-bg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px; 
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #181818;
            padding: 20px 0;
            margin-top: 3rem;
        }

        .bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .bottom-links a {
            color: #888;
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .bottom-links a:hover { color: white; }
/* Hide scrollbar but keep scrolling */
html {
  overflow-y: scroll;
}

body {
  overflow-y: auto;
}

/* Chrome, Edge, Safari */
body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Firefox */
body {
  scrollbar-width: none;
}
