/* CSS Tokens & Setup */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;
    --text-primary: #F5F5F5;
    --text-secondary: #a8a8a8;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #EBC85B;
    --border-color: #222222;
    --border-hover: #3d3419;
    --danger: #FF4C4C;
    --whatsapp-green: #25D366;
    
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography */
h1, h2, h3, h4, .logo, .gold-italic, .hero-title, .section-title, .location-card h3, .section-header-form h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2.8rem;
    color: var(--accent-gold);
    font-weight: 500;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-family: var(--font-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
}
.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}
.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}
.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.logo {
    font-size: 1.5rem;
    color: #fff;
}
.logo span {
    color: var(--accent-gold);
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--accent-gold);
}

.cart-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--accent-gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: auto;
    min-height: auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9)), url('luxurious_chocolate_ganache_cake_with_gold_leaf_decorations_macro_shot_dark/luxurious_chocolate.jpeg') center/cover;
}
.hero-content {
    max-width: 700px;
    padding: 0 20px;
}
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Menu & Sidebar Layout */
.menu-section {
    padding: 80px 0;
    background-color: #161616; /* distinct background */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.menu-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.sort-select {
    padding: 10px 15px;
    border-radius: 8px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-family: var(--font-main);
    cursor: pointer;
    outline: none;
    font-size: 1rem;
}
.sort-select:focus {
    border-color: var(--accent-gold);
}
.mobile-only-select {
    display: none;
}
.menu-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}
.menu-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
/* Hide scrollbar for sidebar */
.menu-sidebar::-webkit-scrollbar {
    display: none;
}
.sidebar-link {
    padding: 15px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: var(--transition);
    text-align: left;
    background: none;
    border-top: none; border-right: none; border-bottom: none;
    font-family: inherit;
}
.sidebar-link:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}
.sidebar-link.active {
    color: var(--text-primary);
    background-color: rgba(139, 0, 0, 0.3); /* Dark red background */
    border-left: 4px solid #cc0000; /* Red accent */
    font-weight: 600;
}

.category-section {
    margin-bottom: 20px;
    scroll-margin-top: 90px;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
}
.accordion-header .chevron {
    transition: transform 0.3s;
    font-size: 1.2rem;
}
.accordion-header.active .chevron {
    transform: rotate(180deg);
}
.accordion-body {
    display: none;
    padding-top: 10px;
}
.accordion-body.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
}
.product-list-item:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.product-list-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-list-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 500;
    font-family: var(--font-serif);
    color: var(--text-primary);
    line-height: 1.3;
}
.product-list-price {
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-weight: 600;
}
.product-list-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}
.product-list-item.has-img-layout .product-list-actions {
    width: 120px;
    height: 120px;
}
.product-list-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.product-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-list-item:hover .product-list-img img {
    transform: scale(1.08);
}
.product-list-item.has-img-layout .add-to-cart {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background-color: #141414;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    letter-spacing: 0.05em;
    font-family: var(--font-main);
}
.product-list-item.has-img-layout .add-to-cart:hover {
    background-color: var(--accent-gold);
    color: #000;
}
.product-list-item.no-img-layout .add-to-cart {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    font-family: var(--font-main);
}
.product-list-item.no-img-layout .add-to-cart:hover {
    background-color: var(--accent-gold);
    color: #000;
}

/* Custom Cake Form */
.custom-cake-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}
.custom-cake-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.notice {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-main);
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="white" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.contact-info a {
    color: var(--accent-gold);
}
.mock-map {
    width: 100%;
    height: 300px;
    background-color: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.cart-drawer {
    position: fixed;
    top: 0; right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}
.cart-drawer.open {
    right: 0;
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}
.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}
.cart-item-info {
    flex-grow: 1;
}
.cart-item-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.cart-item-price {
    color: var(--accent-gold);
    font-size: 0.9rem;
}
.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 6px 12px;
    margin-top: 8px;
    border: 1px solid var(--border-color);
}
.qty-btn {
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 15px;
    font-weight: 500;
}
.cart-summary {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}
.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.checkout-form {
    padding: 20px;
    background-color: var(--bg-dark);
}
.checkout-form h4 {
    margin-bottom: 15px;
}

/* Premium Styles for Home/Hero, Custom Cakes, Gallery, Locations, and Footer */
.gold-italic {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 300;
}
.hero-socials {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.hero-socials span {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--accent-gold);
}
.hero-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.social-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-icon-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.section-label {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Custom Cakes Split Layout */
.custom-cake-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}
.custom-cake-visual {
    display: flex;
    flex-direction: column;
}
.custom-cake-features {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}
.feature-text {
    font-size: 1rem;
    color: var(--text-primary);
}
.custom-cake-images {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}
.cake-img-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    background-color: var(--bg-card);
    aspect-ratio: 4/5;
    transition: var(--transition);
}
.cake-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.cake-img-wrapper:hover {
    border-color: rgba(212, 175, 55, 0.3);
}
.cake-img-wrapper:hover img {
    transform: scale(1.04);
}
.secondary-cake-img {
    transform: translateY(20px);
}
.call-inquire-btn {
    align-self: flex-start;
    margin-top: 10px;
}
.section-header-form {
    margin-bottom: 25px;
}
.section-header-form h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}
.section-header-form p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Gallery Masonry Layout */
.gallery-section {
    padding: 80px 0;
    background-color: #121212;
    border-top: 1px solid var(--border-color);
}
.gallery-masonry {
    column-count: 4;
    column-gap: 15px;
    margin-top: 40px;
}
.gallery-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    background-color: var(--bg-card);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: #161616;
    border-top: 1px solid var(--border-color);
}
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.location-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.location-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}
.location-card-content {
    margin-bottom: 25px;
}
.card-label {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}
.location-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}
.location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.location-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.location-details a {
    color: var(--accent-gold);
    transition: var(--transition);
    text-decoration: none;
}
.location-details a:hover {
    color: var(--accent-gold-hover);
    text-decoration: underline;
}
.direction-btn {
    align-self: stretch;
    text-align: center;
}

/* Site Footer */
.site-footer {
    background-color: var(--bg-dark);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer-brand {
    text-align: center;
}
.footer-brand .logo {
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 15px;
}
.footer-brand p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 25px auto;
    font-size: 1rem;
    line-height: 1.5;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.footer-socials a {
    color: var(--accent-gold);
    transition: var(--transition);
}
.footer-socials a:hover {
    color: var(--accent-gold-hover);
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-gold);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 24px;
    }
    .logo {
        font-size: 1.35rem;
    }
    .nav-links {
        gap: 15px;
    }
    .nav-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
    }
    .logo {
        font-size: 1.25rem;
    }
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-socials {
        flex-direction: column;
        gap: 10px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }
    .menu-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .menu-sidebar {
        display: none !important;
    }
    .menu-controls {
        display: flex;
        gap: 12px;
        width: 100%;
        margin-bottom: 20px;
    }
    .sort-select {
        flex: 1;
        width: 50%;
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    .mobile-only-select {
        display: block !important;
    }
    .product-list-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 16px;
        border-radius: 16px;
    }
    .product-list-info {
        flex: 1;
        padding-right: 8px;
    }
    .product-list-name {
        font-size: 1.15rem;
        margin-bottom: 6px;
        line-height: 1.35;
        white-space: normal;
        word-wrap: break-word;
    }
    .product-list-price {
        font-size: 1.05rem;
        color: var(--accent-gold);
        font-weight: 600;
    }
    .product-list-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .product-list-item.has-img-layout .product-list-actions {
        width: 85px;
        height: 85px;
        position: relative;
    }
    .product-list-img {
        width: 85px;
        height: 85px;
        border-radius: 10px;
    }
    .product-list-item.has-img-layout .add-to-cart {
        padding: 5px 12px;
        font-size: 0.75rem;
        border-radius: 6px;
        bottom: -8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }
    .product-list-item.no-img-layout .add-to-cart {
        padding: 6px 14px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    /* Mobile Responsiveness for Custom Cakes, Gallery, Locations, and Footer */
    .custom-cake-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .secondary-cake-img {
        transform: none;
    }
    .custom-cake-images {
        margin-bottom: 25px;
    }
    .gallery-masonry {
        column-count: 2;
    }
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
