/* Font Declarations */
@font-face {
    font-family: 'Circular Std';
    src: url('assets/fonts/CircularStd-Light.otf') format('opentype');
    font-weight: var(--font-weight-light);
    font-style: normal;
}

/* Design System Variables */
:root {
    /* Typography */
    --font-family-primary: "Circular Std";
    --font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --letter-spacing: 0.024px;
    --line-height: 24px;
    
    /* Colors */
    --color-text-primary: #000;
    --color-text-secondary: #333;
    --color-text-white: #FFF;
    --color-background-primary: #FFF;
    --color-background-black: #000;
    --color-border-light: #E0E0E0;
    --color-success: #5CB85C;
    --color-link: #007BFF;
    --color-error: #DC3545;
    --color-warning: #FFC107;
    --color-error-bg: #F8D7DA;
    --color-warning-bg: #FFF3CD;
    
    /* Layout */
    --container-edge-width: calc(100% + 44px);
    --container-edge-margin: -22px;
    --container-max-width: 600px;
    --container-side-margin: 22px;
    --grid-gutter: 12px;
    
    /* Common Dimensions */
    --border-radius-default: 8px;
    --border-radius-large: 12px;
    --border-radius-round: 50%;
    
    /* Font Sizes */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-medium: 18px;
    --font-size-large: 21px;
    --font-size-xlarge: 25px;
}

/* AdminTopBanner Full Width Container */
#admin-top-banner-container {
    width: 100%;
    background: #000;
}

#admin-top-banner-container .top-banner-container {
    max-width: none;
    width: 100%;
    margin: 0;
}

/* TopBanner Component - Figma Specifications */
.top-banner-container {
    display: flex;
    min-width: 270px;
    height: 106px;
    padding: 14px 10px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #000;
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.top-banner-navigation {
    display: flex;
    width: 70px;
    height: 70px;
    padding: 22px 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.top-banner-navigation-icon {
    width: 40px;
    height: 16px;
    flex-shrink: 0;
}

.top-banner-center-logo {
    width: 72px;
    height: 66px;
}

.top-banner-basket {
    display: flex;
    width: 70px;
    height: 70px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.top-banner-basket-icon {
    width: 36.984px;
    height: 22.046px;
    flex-shrink: 0;
}

/* AGENTIC: Responsive spacing for pages with TopBanner */
.top-banner-container + .container {
}

/* NavigationModal Component - Figma Specifications */
.navigation-modal-overlay {
    position: fixed;
    top: 98px; /* Below TopBanner (98px height) */
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-background-black);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.navigation-modal-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    max-width: var(--container-max-width);
    width: 100%;
    row-gap: 100px;
    margin: 106px 0px;
}

/* Customer-facing navigation modal with 96px margin */
.customer-navigation-modal-container {
    margin: 96px 0px;
}

/* Admin navigation modal with no margin */
.admin-navigation-modal-container {
    margin: 0;
}

.navigation-modal-container .logout-button {
    grid-column: 1 / -1;
    justify-self: start;
}

.navigation-modal-item {
    grid-column: 1 / -1;
    color: var(--color-text-white);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-weight-light);
    cursor: pointer;
    padding: 20px;
    transition: opacity 0.2s ease;
    justify-self: center;
}

.navigation-modal-item:hover {
    opacity: 0.7;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* LogoutButton Component Styles */
.logout-button {
    display: flex;
    height: 54px;
    padding: 20px 0px;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0;
}

.logout-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logout-button-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logout-text {
    color: #FFF;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.left-arrow-icon {
    width: 8px;
    height: 9.5px;
    fill: none;
    stroke-width: 1px;
    stroke: #FFF;
}

/* Login Page Styles */
body.login-page {
    background: #000000;
}

body.login-page .container {
    background-color: transparent;
}

/* Login Container - True CSS Grid */
.login-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    min-height: 100vh;
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-side-margin) 100px var(--container-side-margin);
    box-sizing: border-box;
    align-content: center;
    row-gap: 90px;
}

/* Grid positioning for login elements */
.login-container .login-logo {
    grid-column: 1 / -1;
    justify-self: center;
}

.login-container .login-title {
    grid-column: 1 / -1;
    justify-self: center;
}

.login-container .login-form {
    grid-column: 2 / 12;
    justify-self: stretch;
}

.login-container #login-button {
    grid-column: 1 / -1;
    justify-self: stretch;
}

/* Login Elements */
.login-logo {
    width: 90px;
    height: 82px;
}

.login-title {
    width: 229px;
    color: #FFF;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 27px;
    font-weight: var(--font-weight-light);
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-group input {
    width: 100%;
    height: 56px;
    min-width: 135px;
    padding: 10px 22px;
    border: 0.7px solid #FFF;
    background: transparent;
    color: #FFF;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: var(--font-weight-light);
    box-sizing: border-box;
    outline: none;
}

.input-group input::placeholder {
    color: #FFF;
    opacity: 0.7;
}

/* Screen reader only labels */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Login Button Styling */
#login-button .big-black-button {
    border: 1px solid #FFF;
}

/* DRY: Utility Classes for Common Patterns */
.clickable {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.clickable:hover {
    opacity: 0.8;
}

.clickable:active {
    opacity: 0.6;
}

/* Remove transition from top banner center logo */
.top-banner-center-logo.clickable {
    transition: none;
}

.selected {
    /* Base selected state - can be overridden by specific components */
    opacity: 1;
}

.loading {
    pointer-events: none;
    opacity: 0.6;
}

.error-state {
    border-color: var(--color-error, #ff4444);
    background-color: var(--color-error-light, #fff2f2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: var(--letter-spacing);
    line-height: var(--line-height);
}

body {
    font-family: var(--font-family-system);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    color: var(--color-text-secondary);
    background-color: var(--color-background-primary);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Global image rendering optimization for entire site */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Global Body Text Base Class */
.body-text {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    font-style: normal;
}

/* Luxury Page Transitions */
#app {
    opacity: 1;
    transition: opacity 0.02s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                filter 0.02s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#app.dissolve {
    opacity: 0;
    filter: blur(8px);
    pointer-events: none;
}

#app.fade-in {
    opacity: 0;
    animation: luxuryFadeIn 0.02s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes luxuryFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.edge-to-edge {
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

/* Option 1 Card Component */
.option1-card {
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    margin-bottom: 30px;
    max-width: var(--container-max-width);
    height: 208px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.option1-card-header {
    display: flex;
    height: 68px;
    padding: 32px 70px 6px 70px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.option1-card-text-container {
    display: flex;
    align-items: center;
    gap: 2px;
}

.option1-card-label {
    width: 64px;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    line-height: 16px;
}

.option1-card-value {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    line-height: 16px;
}

.option1-card-footer {
    display: flex;
    width: 100%;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #000;
}

.option1-card-button-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 22px;
}

/* ProductInfo Component */
.product-info-container {
    /* Uses grid system via .row .col-12 wrapper */
}

.product-info-top-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 40px 0px;
}

.product-info-title {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    line-height: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-info-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

.product-info-lower-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-info-desc-title {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    line-height: 16px;
}

.product-info-desc-input {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #000;
    background: transparent;
    outline: none;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    resize: vertical;
}

/* AddPicture Component */
.add-picture-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-picture-container:hover {
    background-color: #f5f5f5;
}

.add-picture-text {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

.add-picture-image {
    width: 100px;
    height: 69px;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* 12-Column Grid Overlay - Always Visible for Development */
/* Settings: 12 columns, red (#FF0000) at 16% opacity, 22px margins, 12px gutters, 600px max width */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 44px);
    max-width: calc(600px - 44px);
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    /* background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 0, 0, 0.16) 0,
        rgba(255, 0, 0, 0.16) calc((100% - 132px) / 12),
        transparent calc((100% - 132px) / 12),
        transparent calc((100% - 132px) / 12 + 12px)
    ); */
}


/* AddressBar Component */
.address-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 1px solid #000;
    position: relative;
    margin: 60px 0px;
    height: 54px;
    overflow: hidden; /* Prevent content overflow */
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    contain: layout; /* Prevent layout shifts on iOS */
    box-sizing: border-box;
}

.address-center-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.gps-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Ensure proper stacking context */
    -webkit-transform: translateZ(0); /* Force GPU acceleration on iOS */
    transform: translateZ(0);
    box-sizing: border-box;
}

.gps-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    -webkit-user-select: none;
    user-select: none;
}

/* BigBlackButton Component */
.big-black-button {
    display: flex;
    height: 56px;
    padding: 27px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 70px;
    background: var(--color-background-black);
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    color: var(--color-text-white);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* AdminInfoBanner Component */
.admin-info-banner {
    display: flex;
    height: 96px;
    min-width: 270px;
    max-width: var(--container-max-width);
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    background: #D2D2D2;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    margin-top: 22px;
    position: relative;
}

.admin-info-banner-text {
    color: var(--color-text-primary);
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.admin-info-banner-edit-icon {
    width: 23.181px;
    height: 23.217px;
    fill: #000;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

/* ProductListHeadings Component */
.product-list-headings {
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    border-bottom: 0.22px solid rgb(0, 0, 0);
    padding: 20px 0;
}

.product-list-heading-text {
    color: var(--color-text-primary);
    text-align: left;
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    display: block;
    width: 100%;
}

/* SimpleBanner Component */
.simple-banner {
    display: flex;
    height: 96px;
    min-width: 270px;
    max-width: var(--container-max-width);
    padding: 0px 46px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    background: #D2D2D2;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

.simple-banner-text {
    color: var(--color-text-primary);
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* ProductInfo Component */
.product-info-container {
    display: flex;
    padding: 10px 0px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.product-info-title {
    width: 115px;
    height: 32px;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.product-info-input {
    display: flex;
    height: 32px;
    min-width: 152px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    padding: 5px 0;
}

.product-info-lower-container {
    display: flex;
    max-width: var(--container-max-width);
    padding: 12px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    align-self: stretch;
}

.product-info-desc-title {
    height: 30px;
    align-self: stretch;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    display: flex;
    align-items: center;
}

.product-info-desc-input {
    height: 42px;
    align-self: stretch;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    resize: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    padding: 5px 0;
}

/* AddPicture Component */

.add-picture-text {
    width: 151px;
    height: 31px;
    flex-shrink: 0;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    display: flex;
    align-items: center;
}

.add-picture-image {
    width: 100px;
    height: 69px;
    flex-shrink: 0;
    object-fit: cover;
}

/* AdminShopCard Component */
.admin-shop-card {
    display: flex;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    padding: 10px 26px 10px 22px;
    align-items: center;
    gap: 2px;
    border-bottom: 0.22px solid #000;
    position: relative;
}

.shop-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    flex: 1 0 0;
}

.shop-top-text {
    align-self: stretch;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.shop-bottom-text {
    align-self: stretch;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.button-cluster {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
}

.edit-icon-div {
    display: flex;
    padding: 52px 6px 10px 6px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.edit-icon-div svg {
    width: 23.181px;
    height: 23.217px;
    fill: #000;
}

.assassins-icon-div {
    display: flex;
    padding: 10px 6px 52px 6px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.assassins-icon {
    width: 24px;
    height: 29px;
}

.account-icon-div {
    display: flex;
    padding: 52px 6px 10px 6px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.account-icon {
    width: 28px;
    height: 28px;
}

.x-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.x-icon-container svg {
    width: 21.546px;
    height: 21.546px;
}

/* SmallRoundButton Component */
.small-round-button {
    display: flex;
    width: 96px;
    height: 36px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 70px;
    background: var(--color-background-black);
    color: var(--color-text-white);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 17px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
    margin-bottom: 12px;
}

.small-round-button:hover {
    background: #333;
}

/* SmallSquareButton Component */
.small-square-button {
    display: flex;
    width: 196px;
    height: 50px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--color-background-black);
    border: none;
    cursor: pointer;
    margin-top: 42px;
    margin-bottom: 42px;
    color: var(--color-text-white);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 17px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* AccountInputField Component */
.account-input-field {
    display: flex;
    min-width: 135px;
    max-width: var(--container-max-width);
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 0.7px solid #B2B2B2;
}

.account-input-text {
    flex: 1 0 0;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    border: none;
    outline: none;
    background: transparent;
}

.account-input-text::placeholder {
    color: #B2B2B2;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* ShopInfoFieldsContainer Component */
.shop-info-fields-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 72px 0px;
}

/* BankInformation Component */
.bank-information {
    display: flex;
    padding: 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.bank-top-text {
    width: 178px;
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.bank-bottom-text {
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* InfoAboutShop Component */
.info-about-shop {
    display: flex;
    width: 100%;
    height: 203px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

.info-top-text {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.info-textarea {
    height: 114px;
    padding: 12px 24px;
    flex-shrink: 0;
    align-self: stretch;
    border: 1px solid rgba(170, 170, 170, 0.67);
    resize: none;
    outline: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    box-sizing: border-box;
}

.info-textarea::placeholder {
    color: #AAA;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* AddressModal Component */
.address-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-background-primary);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.address-modal-header {
    display: flex;
    align-items: center;
    padding: 16px;
    height: 56px;
    background: var(--color-background-primary);
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.address-modal-back {
    font-size: 24px;
    background: none;
    border: none;
    padding: 8px;
    margin-right: 8px;
    cursor: pointer;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.address-modal-input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    font-size: var(--font-size-medium);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    color: var(--color-text-primary);
    padding: 0 8px;
}

.address-modal-input::placeholder {
    color: #999;
}

.address-modal-close {
    font-size: 24px;
    color: #666;
    background: none;
    border: none;
    padding: 8px;
    margin-left: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.address-results {
    flex: 1;
    overflow-y: auto;
    background: var(--color-background-primary);
    padding: 0;
    margin: 0;
}

.address-result-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    background: var(--color-background-primary);
}

.address-result-item:hover {
    background-color: #f5f5f5;
}

.address-result-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    color: #5B5FCF;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-result-content {
    flex: 1;
}

.address-result-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    margin-bottom: 4px;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
}

.address-result-subtitle {
    font-size: var(--font-size-small);
    color: #666;
    line-height: 1.4;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
}

/* EditAreaModal Component */
.edit-area-modal {
    background: white;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
}

.edit-area-modal-content {
    max-width: var(--container-max-width);
    width: calc(100% - 44px);
    margin: 0 auto;
    padding: 40px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.edit-area-modal-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.edit-area-modal-input-container {
    margin-bottom: 40px;
}

.edit-area-modal-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #D2D2D2;
    border-radius: 4px;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-light);
    background: white;
}

.edit-area-modal-input:focus {
    outline: none;
    border-color: var(--color-text-primary);
}

/* DeleteModal Component */
.delete-modal {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 400px;
    width: calc(100% - 44px);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.delete-modal-message {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-medium);
    color: var(--color-text-primary);
    margin-bottom: 30px;
    line-height: 1.4;
}

.delete-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.delete-modal-btn {
    padding: 12px 30px;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
}

.delete-modal-delete {
    background: #E74C3C;
    color: white;
}

.delete-modal-delete:hover {
    background: #C0392B;
}

.delete-modal-cancel {
    background: white;
    color: var(--color-text-primary);
    border: 1px solid #D2D2D2;
}

.delete-modal-cancel:hover {
    background: #F5F5F5;
}

/* Modal Component */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}


.modal {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-text-primary);
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
    box-sizing: border-box;
}

.modal-input:focus {
    outline: none;
    border-color: var(--color-text-primary);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-save {
    background-color: var(--color-text-primary);
    color: white;
}

.modal-save:hover {
    background-color: #333;
}

.modal-cancel {
    background-color: #f0f0f0;
    color: var(--color-text-primary);
}

.modal-cancel:hover {
    background-color: #e0e0e0;
}

/* COMPLETELY BLANK FULLSCREEN MODAL - Ready for Figma Design */
.add-picture-blank-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 3000;
}

.add-picture-blank-container {
    width: 100%;
    height: 100vh;
    background: white;
    /* Uses your custom grid system */
}

.add-picture-blank-content {
    /* Completely blank - ready for Figma design elements */
    width: 100%;
    height: 100%;
}

/* PIN Modal */
.pin-modal {
    background: white;
    border-radius: 8px;
    padding: 30px;
    width: calc(100% - 44px);
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pin-modal-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-medium);
    color: var(--color-text-primary);
    margin-bottom: 30px;
    line-height: 1.4;
}

.pin-modal-input-container {
    margin-bottom: 30px;
}

.pin-modal-input {
    width: 100%;
    padding: 15px;
    font-family: var(--font-family-primary);
    font-size: 24px;
    text-align: center;
    border: 2px solid var(--color-border-light);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
    letter-spacing: 8px;
    background: white;
}

.pin-modal-input:focus {
    border-color: #000;
}

.pin-modal-error {
    color: #E74C3C;
    font-family: var(--font-family-primary);
    font-size: 14px;
    margin-top: 10px;
}

.pin-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.pin-modal-button {
    padding: 12px 30px;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
}

.pin-modal-cancel {
    background-color: white;
    color: var(--color-text-primary);
    border: 1px solid #D2D2D2;
}

.pin-modal-cancel:hover {
    background-color: #F5F5F5;
}

.pin-modal-confirm {
    background-color: #000;
    color: white;
}

.pin-modal-confirm:hover:not(:disabled) {
    background-color: #333;
}

.pin-modal-confirm:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 22px;
    background-color: white;
    position: relative;
}

/* Product page specific container height - only for product pages */
body .container.product-page-container {
    height: 1192px;
}

/* Ensure all other containers have flexible height */
.container:not(.product-page-container) {
    height: auto;
    min-height: auto;
}

/* Grid System */
.row {
    display: flex;
    margin: 0 -6px;
}

/* Grid Positioning System - Just specify column start */
.grid-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    margin: 0;
}

/* Column start positions */
.start-col-1 { grid-column-start: 1; }
.start-col-2 { grid-column-start: 2; }
.start-col-3 { grid-column-start: 3; }
.start-col-4 { grid-column-start: 4; }
.start-col-5 { grid-column-start: 5; }
.start-col-6 { grid-column-start: 6; }
.start-col-7 { grid-column-start: 7; }
.start-col-8 { grid-column-start: 8; }
.start-col-9 { grid-column-start: 9; }
.start-col-10 { grid-column-start: 10; }
.start-col-11 { grid-column-start: 11; }
.start-col-12 { grid-column-start: 12; }

/* Column span options */
.span-1 { grid-column-end: span 1; }
.span-2 { grid-column-end: span 2; }
.span-3 { grid-column-end: span 3; }
.span-4 { grid-column-end: span 4; }
.span-5 { grid-column-end: span 5; }
.span-6 { grid-column-end: span 6; }
.span-7 { grid-column-end: span 7; }
.span-8 { grid-column-end: span 8; }
.span-9 { grid-column-end: span 9; }
.span-10 { grid-column-end: span 10; }
.span-11 { grid-column-end: span 11; }
.span-12 { grid-column-end: span 12; }

.col-1 { width: calc(8.333% - 12px); margin: 0 6px; }
.col-2 { width: calc(16.667% - 12px); margin: 0 6px; }
.col-3 { width: calc(25% - 12px); margin: 0 6px; }
.col-4 { width: calc(33.333% - 12px); margin: 0 6px; }
.col-5 { width: calc(41.667% - 12px); margin: 0 6px; }
.col-6 { width: calc(50% - 12px); margin: 0 6px; }
.col-7 { width: calc(58.333% - 12px); margin: 0 6px; }
.col-8 { width: calc(66.667% - 12px); margin: 0 6px; }
.col-9 { width: calc(75% - 12px); margin: 0 6px; }
.col-10 { width: calc(83.333% - 12px); margin: 0 6px; }
.col-11 { width: calc(91.667% - 12px); margin: 0 6px; }
.col-12 { width: calc(100% - 12px); margin: 0 6px; }

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
}

.cart-btn {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-btn:hover {
    background-color: #b71c1c;
}

/* Main Content */
.main-content {
    padding: 20px 0;
    min-height: calc(100vh - 100px);
}

/* Views */
.view {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Shop Selection View */
.shop-select-view h2 {
    margin-bottom: 20px;
    text-align: center;
}

.address-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.address-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: var(--font-size-base);
}

.area-result {
    margin-top: 20px;
}

.area-message {
    text-align: center;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 20px;
}

.shops-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ShopCard Component */
.shop-card-container {
    display: flex;
    height: 106px;
    width: 100%;
    padding: 9px 6px 9px 0px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #000;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0px 0px 26px 0px;
}

.shop-card-left-rectangle {
    width: 40px;
    height: 106px;
    background: var(--color-background-black);
    position: absolute;
    left: 0;
    top: -1px;
}

.shop-card-center-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.shop-card-distance {
    width: 46px;
    height: 20px;
    position: absolute;
    right: 4px;
    bottom: 7px;
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 13px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* Shop Card Clicked State */



/* ButcherShopHeader Component */
.butcher-shop-header-wrapper {
    text-align: center;
}

.butcher-shop-header {
    color: var(--color-text-primary);
    text-align: center;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    margin: 46px 0px 30px 0px;
    position: relative;
    display: inline-block;
}

.butcher-shop-tooltip-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    cursor: pointer;
    top: 0;
    right: -24px;
}

.butcher-shop-tooltip-icon svg {
    width: 16px;
    height: 16px;
    fill: #000;
    margin-bottom: 1.2rem;
}

/* TooltipIcon Component - Proper implementation */
.tooltip-icon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(86%) translateY(-42%);
    padding: 16px;
    cursor: pointer;
    /* Creates 28x28px clickable area (16px icon + 12px padding) */
}

.tooltip-icon-wrapper svg {
    display: block;
    width: 16px;
    height: 16px;
}

/* DeliveryInformation Component - Figma specifications */
.delivery-information-container {
    display: flex;
    height: 369px;
    padding: 26px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.delivery-information-text {
    width: 344px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}


/* SearchBar Component */
.search-bar-container {
    display: flex;
    min-width: 270px;
    max-width: var(--container-max-width);
    padding-left: 14px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border: 0.22px solid #000;
    margin: 22px 0px;
}

.search-bar-input {
    display: flex;
    flex: 1;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    align-self: stretch;
}

.search-bar-input::placeholder {
    color: var(--color-text-primary);
    opacity: 1;
}


.search-bar-icon {
    width: 62px;
    height: 52px;
    cursor: pointer;
}

.search-bar-icon svg {
    width: 62px;
    height: 52px;
}

/* CategoryBanner Component */
.category-banner-container {
    display: flex;
    height: 100px;
    min-width: 270px;
    max-width: var(--container-max-width);
    padding: 0px 10px 0px 20px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 0.22px solid #000;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

.category-banner-text {
    color: var(--color-text-primary);
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* ProductCard Component */
.product-card-container {
    display: flex;
    min-width: 270px;
    max-width: var(--container-max-width);
    padding: 9px 34px 9px 66px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 0.22px solid #000;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    background-color: transparent;
    transition: none;
}

/* BasketIcon Component */
.basket-icon-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 32px 22px;
}

.basket-icon-svg {
    width: 32px;
    height: 20px;
    cursor: pointer;
}

.basket-icon-svg svg {
    width: 37px;
    height: 24px;
    fill: #000;
}

/* Product Page Image */
.product-page-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Product Page Message */
.product-page-message {
    text-align: center;
    padding: 50px 0;
    color: #666;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

/* ProductDescription Component */
.product-description-container {
    display: flex;
    padding: 32px 0px 12px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.product-description-container {
    display: flex;
    padding: 36px 12px 12px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.product-description-text {
    color: #000;
    text-align: center;
    -webkit-text-stroke-width: 0.22px;
    -webkit-text-stroke-color: #000;
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* Option1Banner Component */
.product-banner-container {
    display: flex;
    height: 116px;
    min-width: 270px;
    max-width: var(--container-max-width);
    padding: 0px 10px 0px 40px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 0.22px solid #000;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

.product-banner-text {
    color: var(--color-text-primary);
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* Option2And3Banner Component */
.option2-and3-banner-container {
    display: flex;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    padding: 30px 46px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #D2D2D2;
}

.option2-and3-banner-top-text {
    color: var(--color-text-primary);
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.option2-and3-banner-bottom-div {
    display: flex;
    width: 316px;
    justify-content: space-between;
    align-items: center;
}

.option2-and3-banner-bottom-title {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.option2-and3-banner-bottom-input {
    width: 221px;
    height: 46px;
    flex-shrink: 0;
    background: var(--color-background-primary);
    border: none;
    outline: none;
    padding: 0 10px;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

/* Option2Card Component */
.option2-card-container {
    display: flex;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    padding: 20px 6px;
    justify-content: center;
    align-items: center;
    gap: 26px;
    border-bottom: 1px solid #000;
}

.option2-card-hamburger {
    width: 23px;
    height: 9px;
}

.option2-card-name-div {
    display: flex;
    width: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 17px;
}

.option2-card-name-title {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.option2-card-add-percent-title {
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.option2-card-input-div {
    display: flex;
    width: 170px;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.option2-card-top-input {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

.option2-card-bottom-input {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

.option2-card-x-button-div {
    display: flex;
    width: 32px;
    height: 126px;
    padding: 4px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2px;
    cursor: pointer;
}

.option2-card-x-icon {
    width: 21.546px;
    height: 21.546px;
    flex-shrink: 0;
}

/* ProductSpecificForm Component */
.product-specific-form {
    /* Container for the form */
}

.product-form-row {
    display: flex;
    height: 62px;
    padding: 10px 22px;
    margin: 20px 0px;
    align-items: center;
    gap: 50px;
}

.product-form-label {
    width: 150px;
    text-align: right;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    flex-shrink: 0;
}

.product-form-input {
    width: 121px;
    height: 43px;
    padding: 10px 0;
    border: none;
    border-bottom: 0.22px solid #000;
    background: transparent;
    text-align: center;
    outline: none;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

/* AdminProductCard Component */
.admin-product-card-container {
    display: flex;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    height: 90px;
    padding: 0px 30px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.22px solid #000;
}

.admin-product-card-hamburger {
    width: 21px;
    height: 8px;
}

.admin-product-card-image {
    width: 53px;
    height: 37px;
    object-fit: cover;
}

.admin-product-card-title {
    width: 90px;
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.admin-product-card-edit-icon {
    width: 21.591px;
    height: 22.608px;
    cursor: pointer;
}

/* Admin Helper Classes */
.admin-category-wrapper {
    margin-bottom: 20px;
}

.admin-button-container-center {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.admin-delete-button-col {
    display: flex;
    justify-content: flex-end;
    min-width: 96px;
}

.admin-delete-button-col-hidden {
    display: none;
}

.admin-add-picture-row {
    margin-top: 20px;
}

.admin-file-input-hidden {
    display: none;
}

.admin-add-button-row {
    margin-top: 40px;
    margin-bottom: 20px;
}

.admin-add-button-col {
    display: flex;
    justify-content: center;
}

.admin-add-option-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.admin-button-container-spacing {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.admin-address-input-clickable {
    cursor: pointer;
}



.product-card-name {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: 17px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    transition: color 0.22s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.product-card-image {
    width: 82px;
    height: 56px;
    object-fit: cover;
}

/* ProductCard Component - Figma Specifications */
.product-card {
    display: flex;
    height: 106px;
    padding: 0px 37px 0px 112px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 0.22px solid #000;
    cursor: pointer;
    /* Edge-to-edge span ignoring 22px margins */
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    justify-content: flex-start;
}


.product-card-text {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), Arial, sans-serif;
    font-size: var(--font-size-large);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* ProductCard Selected State - Exact Figma Specifications */
.product-card-selected {
    background: var(--color-background-black);
    justify-content: space-between;
}

.product-card-selected .product-card-text {
    color: var(--color-text-white);
    -webkit-text-stroke-color: var(--color-text-white);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-light);
}

.product-card-selected-text {
    color: var(--color-text-white);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 12px;
    font-weight: var(--font-weight-light);
    display: none;
}

.product-card-selected .product-card-selected-text {
    display: block;
}

/* Product List View */
.shop-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d32f2f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* NoteOrMarinadeButton Component */
.note-marinade-button-container {
    display: flex;
    height: 116px;
    min-width: 135px;
    max-width: 300px;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    border-top: 0.22px solid #000;
    border-bottom: 0.22px solid #000;
    cursor: pointer;
}

.note-marinade-right {
    width: calc(50% + 22px);
    margin-left: -22px;
    border-right: 0.22px solid #000;
}

.note-marinade-left {
    width: calc(50% + 22px);
    margin-right: -22px;
    border-left: 0.22px solid #000;
}

.note-marinade-button-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    gap: 7px;
}

.note-marinade-text {
    color: var(--color-text-primary);
    -webkit-text-stroke-width: 0.22px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
    letter-spacing: 0.33px;
}

.note-marinade-button-content svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-bottom: 3px;
}

/* QuantityToggleBar Component */
.quantity-toggle-container {
    display: flex;
    height: 116px;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: var(--color-background-black);
    position: relative;
}

.quantity-toggle-left-button {
    display: flex;
    height: 116px;
    min-width: 135px;
    max-width: 300px;
    min-height: 96px;
    padding-left: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    cursor: pointer;
}

.quantity-toggle-right-button {
    display: flex;
    height: 116px;
    min-width: 135px;
    max-width: 300px;
    min-height: 96px;
    padding: 10px 12px 10px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    cursor: pointer;
}

.quantity-toggle-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: 24px;
    font-weight: var(--font-weight-light);
    pointer-events: none;
}

.quantity-toggle-qty-label {
    position: absolute;
    right: 139px;
    bottom: 18px;
    color: var(--color-text-white);
    text-align: center;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
    letter-spacing: 0.33px;
}

/* PriceDisplay Component */
.price-display-container {
    display: flex;
    height: 116px;
    min-width: 270px;
    max-width: var(--container-max-width);
    justify-content: center;
    align-items: center;
    gap: 36px;
    align-self: stretch;
}

.price-display-text {
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
    letter-spacing: 0.55px;
}

/* Product page specific styles */

/* Add Basket Button Container */
.add-basket-button-container {
    display: flex;
    height: 116px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

/* ToggleBar Component */
.toggle-bar-container {
    display: flex;
    height: 116px;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    background: var(--color-background-black);
    position: relative;
}

.toggle-bar-left-button,
.toggle-bar-right-button {
    flex: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-bar-left-button {
    justify-content: flex-start;
    padding-left: calc(22px + (2 * ((100% - 44px) / 12)) + 8px);
}

.toggle-bar-right-button {
    justify-content: flex-end;
    padding-right: calc(22px + (2 * ((100% - 44px) / 12)) + 8px);
}

.toggle-bar-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: 24px;
    font-weight: var(--font-weight-light);
    letter-spacing: var(--letter-spacing);
    line-height: var(--line-height);
    pointer-events: none;
}

/* ToggleBar Button Clicked State */
@keyframes luxuriousClick {
  0% { 
    background-color: inherit;
  }
  50% { 
    background-color: rgba(255, 255, 255, 0.55);
  }
  100% { 
    background-color: inherit;
  }
}

.toggle-bar-button-clicked {
    animation: luxuriousClick 52ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toggle-bar-button-clicked svg path {
    fill: black !important;
}

/* Control Spacing for Payment Success/Failed Pages */
.control-spacing {
    display: flex;
    padding: 112px 0px 90px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* PageTitle Component */
.page-title-container {
    display: flex;
    padding: 46px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* PaymentSuccess specific PageTitle styling */
.page-title-container.payment-success {
    display: block;
    padding: 112px 0px;
    justify-content: unset;
    align-items: unset;
}

/* DeliveryInfo specific PageTitle styling */
.page-title-container.delivery-info {
    padding: 32px 20px;
}

/* CustomerOrderPostPaymentInformation Component */
.customer-order-post-payment-container {
    display: flex;
    padding: 9px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 29px;
}

.customer-order-post-payment-text {
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 21px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* LoadingBar Component */
.loading-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
}

.loading-bar-text {
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 19px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.loading-bar-background {
    width: 280px;
    height: 8px;
    background-color: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background-color: #000;
    width: 0%;
    border-radius: 4px;
}

/* Loading animation */
@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Form Validation Error States */
.checkout-input-field.error {
    border-color: #FF0000 !important;
}

.checkout-input-field.error:focus {
    border-color: #FF0000 !important;
    outline: none;
}

.page-title-text {
    color: var(--color-text-primary);
    text-align: center;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* RemoveButton Component */
.remove-button-container {
    display: flex;
    padding: 20px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 1px;
    flex: 1 0 0;
    cursor: pointer;
}

.remove-button-text {
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: 32px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.remove-button-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NoteTextBox Component */
.note-textbox-container {
    display: flex;
    height: 156px;
    padding: 20px 60px;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    border-top: 0.22px solid var(--color-text-primary);
    border-bottom: 0.22px solid var(--color-text-primary);
}

.note-textbox-input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    background: transparent;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
}

.note-textbox-input::placeholder {
    color: var(--color-text-secondary);
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

/* AddNoteModal Component */
.add-note-modal {
    background: white;
    width: 100vw;
    height: 100vh;
    max-width: var(--container-max-width);
    display: flex;
    flex-direction: column;
    padding: 0 var(--container-side-margin);
}

/* Override edge-extending components within modal to span edge-to-edge */
.add-note-modal .product-banner-container {
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

.add-note-modal .note-textbox-container {
    align-self: auto;
    border-top: none;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

/* AddPictureModal Component */
.add-picture-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 1000;
}

.add-picture-modal-container {
    display: flex;
    padding-bottom: 70px;
    flex-direction: column;
    align-items: center;
    gap: 76px;
    grid-column: 1 / 13;
}

/* AddMarinadeModal Component */
.add-marinade-modal {
    background: white;
    width: 100vw;
    height: 100vh;
    max-width: var(--container-max-width);
    display: flex;
    flex-direction: column;
    padding: 0 var(--container-side-margin);
}

/* Override edge-extending components within marinade modal to span edge-to-edge */
.add-marinade-modal .product-banner-container {
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

/* Shop Info Modal */
.shop-info-modal {
    background: white;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: var(--container-max-width);
    display: flex;
    flex-direction: column;
    padding: 0 var(--container-side-margin);
    padding-top: max(10px, env(safe-area-inset-top));
}

/* Shop Closed Modal */
.shop-closed-modal {
    background: white;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    max-width: var(--container-max-width);
    display: flex;
    flex-direction: column;
    padding: 0 var(--container-side-margin);
    padding-top: max(10px, env(safe-area-inset-top)); /* Ensure X button is below address bar */
    position: relative;
    overflow-y: auto;
}

.shop-closed-text-container {
    display: flex;
    padding: 142px 0px;
    flex-direction: column;
    align-items: center;
    gap: 110px;
}

.shop-closed-top-text-container {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.shop-closed-bottom-text-container {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.shop-closed-text {
    color: #000;
    text-align: center;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #000;
    font-family: var(--font-family-primary), -apple-system, sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.shop-closed-bottom-text {
    width: 220px;
}

/* Shop Info Component */
.shop-info-container {
    display: flex;
    padding: 120px 0px;
    flex-direction: column;
    align-items: center;
    gap: 120px;
}

.shop-info-top-text {
    width: 344px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.shop-info-top-text a {
    color: #000;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.shop-info-middle-text {
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.shop-info-bottom-text {
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}


/* BasketCard Component */
.basket-card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    /* AGENTIC: Use established edge-to-edge pattern like other components */
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

.basket-empty-message {
    padding: 40px;
    text-align: center;
    color: #666;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}

.basket-card-heading-container {
    display: flex;
    height: 96px;
    padding: 0px 42px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 0.22px solid #000;
}

.basket-card-heading-name {
    color: #000;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #000;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.basket-card-heading-image {
    width: 84px;
    height: 56px;
    object-fit: cover;
}

.basket-card-options-container {
    display: flex;
    padding: 27px 22px 27px 92px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
    /* AGENTIC: Use established pattern - stretch to fill parent width */
    align-self: stretch;
}

.basket-card-options-text {
    color: #000;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.basket-card-price-quantity-container {
    display: flex;
    height: 96px;
    padding: 14px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 0.22px solid #000;
}

.basket-card-price {
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.basket-card-quantity-text {
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.basket-card-quantity-toggle-container {
    display: flex;
    width: 211px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.basket-card-minus-button,
.basket-card-plus-button {
    width: 52px;
    height: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-card-center-text {
    width: 9px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.basket-card-qty-label {
    width: 20px;
    height: 17px;
    position: absolute;
    right: 67px;
    bottom: 15px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}


/* Note Button Selected State */
.note-button-selected {
    background-color: var(--color-background-black) !important;
    border-color: var(--color-background-black) !important;
}

.note-button-selected .note-marinade-text {
    color: var(--color-text-white) !important;
}

/* BasketInfo Component - PROPER CSS Classes */
.basket-info-container {
    display: flex;
    padding: 20px 22px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    /* AGENTIC: Span columns 1-12 using established edge-to-edge pattern */
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
}

.basket-info-eta {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.basket-info-title-container {
    display: flex;
    height: 95px;
    padding: 0px 14px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.basket-info-title {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.basket-info-prices-container {
    display: flex;
    height: 110px;
    padding: 10px 6px 10px 0px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.basket-info-price {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* Basket Page Layout - PROPER CSS Classes */
.basket-layout {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 98px);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-side-margin);
}

.basket-scrollable-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.basket-fixed-bottom {
    flex-shrink: 0;
    background: var(--color-background-primary);
    border-top: 1px solid var(--color-border-light);
    padding: 0 var(--container-side-margin) 10px var(--container-side-margin);
}

/* AGENTIC: Checkout button spans columns 1-12 using established pattern */
.basket-fixed-bottom .big-black-button {
    /* DRY: Use established edge-to-edge pattern like other components */
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    margin-top: 10px;
    margin-bottom: 0;
}


/* DRY: Button State Classes */
.button-go-to-basket {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.button-arrow-icon {
    width: 35.393px;
    height: 20.744px;
    flex-shrink: 0;
    fill: var(--color-text-white);
}

/* AGENTIC: Error Toast Notifications - User-Friendly Error Display */
.error-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: calc(var(--container-max-width) - 44px);
    padding: 12px 16px;
    border-radius: var(--border-radius-default);
    font-family: var(--font-family-primary), var(--font-family-system);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInFromTop 0.3s ease-out;
}

.error-toast--error {
    background-color: var(--color-error-bg);
    color: var(--color-error);
    border: 1px solid var(--color-error);
}

.error-toast--warning {
    background-color: var(--color-warning-bg);
    color: #856404;
    border: 1px solid var(--color-warning);
}

.error-toast--success {
    background-color: #D4F1D4;
    color: var(--color-success);
    border: 1px solid var(--color-success);
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ProductInformation Component - Exact Figma Specifications */
.product-information-container {
    display: flex;
    max-width: 520px;
    padding: 0px 6px 46px 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 46px;
    margin: 0 auto;
}

.product-information-text {
    align-self: stretch;
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.product-information-text-height {
    height: 107px;
}

.product-information-underlined {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.product-information-text:last-child {
    height: 84px;
}

.product-information-numbered {
    display: flex;
}

.product-information-number {
    flex-shrink: 0;
    margin-right: 4px;
}

.product-information-content {
    flex: 1;
}

/* DeliveryInfo Component - Exact Figma Specifications */
.delivery-info-container {
    display: flex;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.delivery-info-text {
    width: 358px;
    height: 27px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* TrustPilot Component - Exact Figma Specifications */
.trustpilot-container {
    display: flex;
    padding: 46px 0px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.trustpilot-logo {
    width: 104px;
    height: 26px;
}

/* Contact Page Title - Exact Figma Specifications */
.contact-page-title {
    display: flex;
    padding: 52px 0px 50px 0px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

/* Contact Page Wrapper */
.contact-page-wrapper {
    margin: 92px 0px;
}

/* AiBar Component - Exact Figma Specifications */
.ai-bar-container {
    display: flex;
    padding: 22px;
    align-items: center;
    gap: 22px;
    align-self: stretch;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.ai-bar-nav-icon-div {
    display: flex;
    width: 46px;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.ai-bar-nav-icon {
    width: 40px;
    height: 16px;
}

.ai-bar-nav-icon svg {
    width: 40px;
    height: 16px;
}

.ai-bar-text-area-container {
    display: flex;
    min-height: 56px;
    padding-left: 20px;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    border-radius: 100px;
    border: 1px solid #D2D2D2;
}

.ai-bar-text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 0;
    align-self: stretch;
    color: #000;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
}

.ai-bar-text-area::placeholder {
    color: #999;
}

.ai-bar-microphone-container {
    display: flex;
    width: 72px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.ai-bar-microphone-icon {
    width: 20px;
    height: 27px;
    flex-shrink: 0;
}

.ai-bar-microphone-icon svg {
    width: 20px;
    height: 28px;
}

/* ContactInfo Component - Exact Figma Specifications */
.contact-info-container {
    display: flex;
    padding: 22px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-info-text {
    width: 358px;
    height: 219px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* Full-Screen Modal - AGENTIC Design */
.modal-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 0;
    overflow-y: auto;
}

.modal-fullscreen-container {
    background-color: var(--color-background-primary);
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 40px var(--container-side-margin);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header-row {
    margin-bottom: 80px;
    align-items: center;
}

.modal-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    margin: 0;
    text-align: center;
}

.modal-close-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.modal-close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: background-color 0.2s ease;
}

.modal-close-button:hover {
    background-color: #f0f0f0;
}

.modal-close-button svg {
    width: 24px;
    height: 24px;
}

.modal-content-row {
    margin-bottom: 40px;
}

.modal-field-row {
    margin-bottom: 36px;
    align-items: center;
}

.modal-field-label-col {
    display: flex;
    align-items: center;
}

.modal-field-label {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    margin: 0;
}

.modal-field-input-col {
    display: flex;
    align-items: center;
}

.modal-field-select {
    width: 100%;
    padding: 12px 16px;
    padding-right: 40px;
    border: 1px solid var(--color-border-light);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    background-color: var(--color-background-primary);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
    cursor: pointer;
}

.modal-field-select:focus {
    outline: none;
    border-color: var(--color-text-primary);
}

.modal-field-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border-light);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    background-color: var(--color-background-primary);
}

.modal-field-input:focus {
    outline: none;
    border-color: var(--color-text-primary);
}

.modal-field-input-disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.modal-field-input-disabled:focus {
    border-color: var(--color-border-light);
}

.modal-save-row {
    margin-top: 40px;
}

/* MarinadeInputField Component */
.marinade-input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

/* Top Container - Marinade Name */
.marinade-input-top-container {
    display: flex;
    padding: 60px 22px;
    justify-content: center;
    align-items: center;
    gap: 50px;
    align-self: stretch;
}

/* Middle Container - KG Price */
.marinade-input-middle-container {
    display: flex;
    padding: 60px 22px;
    justify-content: center;
    align-items: center;
    gap: 50px;
    align-self: stretch;
}

/* Left Title Div for both top and middle */
.marinade-input-left-title-div {
    display: flex;
    width: 140px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

/* Left Title text */
.marinade-input-left-title {
    color: #000;
    text-align: right;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* Right Input Field for both top and middle */
.marinade-input-right-field {
    display: flex;
    width: 121px;
    height: 43px;
    padding: 10px 0px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-bottom: 0.22px solid #000;
    background: transparent;
    outline: none;
    font-family: var(--font-family-primary);
    font-size: 16px;
}

/* Bottom Container - Ingredients */
.marinade-input-bottom-container {
    display: flex;
    max-width: 600px;
    padding: 60px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    align-self: stretch;
}

/* Bottom Title */
.marinade-input-bottom-title {
    height: 30px;
    align-self: stretch;
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* Bottom Input Field */
.marinade-input-bottom-field {
    height: 42px;
    align-self: stretch;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    font-family: var(--font-family-primary);
    font-size: 16px;
    padding: 10px 0;
}

/* Marinades Container Styles */
.marinades-container {
    /* No padding needed */
}

.loading-marinades,
.no-marinades,
.error-marinades {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

/* CheckoutField Component Styles - Figma Specifications */
.checkout-field-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.checkout-first-line-container {
    display: flex;
    height: 52px;
    min-width: 290px;
    max-width: 600px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.checkout-first-name-input-box {
    display: flex;
    height: 52px;
    min-width: 135px;
    max-width: 293px;
    padding: 0px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border: 0.7px solid #B2B2B2;
}

.checkout-surname-input-box {
    display: flex;
    height: 52px;
    min-width: 135px;
    max-width: 293px;
    padding: 0px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    border: 0.7px solid #B2B2B2;
}

.checkout-email-input-box {
    display: flex;
    height: 52px;
    min-width: 135px;
    max-width: 600px;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 0.7px solid #B2B2B2;
}

.checkout-phone-input-box {
    display: flex;
    height: 52px;
    min-width: 135px;
    max-width: 600px;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 0.7px solid #B2B2B2;
}

.checkout-input-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 0;
    align-self: stretch;
    border: none;
    outline: none;
    background: transparent;
    color: black;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.checkout-input-field::placeholder {
    color: #B2B2B2;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* BillingAddress Component Styles - Figma Specifications */
.billing-address-container {
    display: flex;
    width: 260px;
    align-items: flex-start;
    gap: 11px;
    margin: 60px 0px;
}

.billing-address-title {
    width: 90px;
    height: 23px;
    flex-shrink: 0;
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.billing-actual-address {
    width: 160px;
    min-height: 69px;
    flex-shrink: 0;
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* PaymentsButton Component Styles - Figma Specifications */
.payments-button-container {
    display: flex;
    height: 65px;
    min-width: 275px;
    max-width: 600px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 2px;
    border: 0.7px solid #B2B2B2;
    background: #000;
}

.payments-button-image {
    height: 26px;
    flex-shrink: 0;
    align-self: center;
}

.manual-payment-text {
    color: #FFF;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* Orders Grid Container - For admin orders page */
.orders-grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Individual order card wrapper - spans full width (col-1 to col-12) */
.order-card-wrapper {
    grid-column: 1 / -1; /* Span from column 1 to the last column (12) */
    min-height: 460px;
    max-height: 460px;
    width: 100%;
    position: relative;
}

/* Ensure OrdersCard components display properly in grid */
.orders-grid-container > .order-card-wrapper {
    display: block;
}

/* OrdersCard Component Styles */
.orders-card-container {
    display: flex;
    height: 460px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
}

.orders-card-header {
    display: flex;
    padding: 10px 22px;
    margin: 0 -22px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.orders-card-customer-info {
    display: flex;
    width: 222px;
    height: 105px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.orders-card-customer-name {
    align-self: stretch;
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 19px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.orders-card-status {
    align-self: stretch;
    color: #F00;
    font-family: var(--font-family-primary);
    font-size: 19px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.orders-card-order-details {
    display: flex;
    width: 132px;
    height: 105px;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.orders-card-order-number,
.orders-card-order-time,
.orders-card-order-total {
    align-self: stretch;
    color: #000;
    text-align: right;
    font-family: var(--font-family-primary);
    font-size: 19px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.orders-card-shop-info {
    display: flex;
    height: 159px;
    padding: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 42px;
    flex-shrink: 0;
    align-self: stretch;
}

.orders-card-shop-name {
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 19px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.orders-card-address {
    width: 202px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 19px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.orders-card-actions {
    display: flex;
    padding: 60px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-bottom: 0.22px solid #000;
    width: var(--container-edge-width);
    margin-left: var(--container-edge-margin);
    margin-right: var(--container-edge-margin);
    box-sizing: border-box;
}

/* ========================================
   CATEGORY SEARCH GRID & CATEGORY BUTTONS
   ======================================== */

/* Category Grid Wrapper - ensures consistent positioning */
.category-grid-wrapper {
    /* No styling needed - this is just a positioning container */
}

/* Inline Grid Container */
.category-search-grid-container {
    background: white;
    padding: 20px 0;
    transform: translateY(-10px);
    transition: all 0.06s ease;
    margin: 0; /* Respect container margins */
    display: flex;
    justify-content: center; /* Center the grid */
    align-items: flex-start;
}

/* Category Grid Container - Updated to CSS Grid for 3-column layout */
.category-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 490px;
    padding: 0px 10px;
    margin: 0 auto; /* Center the grid within the container */
    justify-content: center; /* Center the grid content */
}

/* Category Button - Updated for consistent sizing in grid */
.category-button {
    display: flex;
    height: 77px;
    padding: 7px;
    justify-content: center;
    align-items: center;
    border: 0.22px solid #000;
    cursor: pointer;
    background: white;
    transition: all 0.02s ease;
    width: clamp(120px, 100%, 160px); /* Responsive width with consistent min/max */
}

/* Category Button Text - Exact Figma Specifications */
.category-button-text {
    color: #000;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    transition: color 0.02s ease;
    padding: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Persistent Selected State */
.category-button-selected {
    background: #000 !important;
}

.category-button-text-selected {
    color: #fff !important;
}

/* Flash Animation States */
.category-button-flash {
    background: #000 !important;
}

.category-button-text-flash {
    color: #fff !important;
}

/* Responsive Adjustments */
@media (max-width: 500px) {
    .category-grid-container {
        width: 100%;
        max-width: 400px;
        padding: 0px 5px;
        grid-template-columns: repeat(3, 1fr); /* Maintain 3 columns on mobile */
        gap: 8px; /* Slightly smaller gap on mobile */
    }
    
    .category-button {
        height: 65px;
        padding: 5px;
        width: 100%; /* Full width of grid cell */
    }
    
    .category-button-text {
        font-size: 16px; /* Slightly smaller text for mobile */
        word-break: break-word; /* Allow text to wrap if needed */
        line-height: 1.2;
    }
    
    .category-search-grid-container {
        padding: 15px 0;
    }
}

/* Very small screens - switch to 2 columns */
@media (max-width: 320px) {
    .category-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   PRODUCTS AREA CONTAINER
   ======================================== */

.products-area {
    /* Container for all category banners and product cards */
    width: 100%;
}

.gallery-area {
    /* Container for all gallery category banners - matches products-area */
    width: 100%;
}

/* ========================================
   UPDATE OPENING TIME TITLE
   ======================================== */

.update-opening-time-container {
    display: flex;
    height: 48px;
    min-width: 135px;
    max-width: 600px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
}

.update-opening-time-text {
    align-self: stretch;
    color: #AAA;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* ========================================
   GOOGLE PROFILE SECTION CONTAINER
   ======================================== */

.google-profile-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
    max-width: 600px;
}

/* ========================================
   ENTER ADDRESS INSTRUCTION TEXT COMPONENT
   ======================================== */

.enter-address-instruction-text {
    width: 220px;
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 17px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    margin: 90px 0px;
}

/* ========================================
   HERE COMPONENT
   ======================================== */

.here-container {
    display: flex;
    padding-bottom: 10px;
    justify-content: flex-start; /* Changed to align with start of column 7 */
    align-items: center;
    gap: 7px;
}

.here-arrow {
    width: 36.522px;
    height: 31.245px;
    fill: var(--color-text-primary);
}

.here-text-container {
    display: flex;
    height: 56px;
    padding: 60px 0px 10px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.here-text {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-size: 17px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* PaymentButtons Component */
.payment-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.payment-buttons-top-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.payment-button-gpay {
    display: flex;
    height: 65px;
    min-width: 100px;
    max-width: 290px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 2px;
    border: 0.7px solid #B2B2B2;
    cursor: pointer;
}

.payment-button-gpay-icon {
    height: 26px;
    flex-shrink: 0;
    align-self: stretch;
}

.payment-button-apay {
    display: flex;
    height: 65px;
    min-width: 100px;
    max-width: 290px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 2px;
    border: 0.7px solid #B2B2B2;
    cursor: pointer;
}

.payment-button-apay-icon {
    width: 60px;
    height: 30px;
}

.payment-button-manual {
    display: flex;
    height: 65px;
    min-width: 270px;
    max-width: 600px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 2px;
    border: 0.7px solid #B2B2B2;
    cursor: pointer;
}

.payment-button-manual-text {
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

/* Square Payment Form Styles */
.square-payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.square-form-title {
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

#square-card-container {
    min-height: 60px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 12px;
    background: #FFF;
}

.square-pay-button {
    background: #000;
    color: #FFF;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.square-pay-button:hover:not(:disabled) {
    background: #333;
}

.square-pay-button:disabled {
    background: #B2B2B2;
    cursor: not-allowed;
}

.square-cancel-button {
    background: transparent;
    color: #000;
    border: 1px solid #B2B2B2;
    border-radius: 8px;
    padding: 16px 24px;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.2s;
}

.square-cancel-button:hover {
    background: #F5F5F5;
}

/* ============================================================================
   SAVE CARD COMPONENT
   ============================================================================ */

.save-card-container {
    display: flex;
    min-width: 260px;
    max-width: 400px;
    padding: 10px 12px;
    align-items: flex-start;
    gap: 22px;
    align-self: stretch;
}

.save-card-checkbox {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 2px solid #000;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #FFF;
    position: relative;
    transition: all 0.2s ease;
}

.save-card-checkbox:checked {
    background: #000;
    border-color: #000;
}

.save-card-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.save-card-text-container {
    display: flex;
    width: 283px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
}

.save-card-title {
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.save-card-description {
    color: #B2B2B2;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

/* ChangeCheckoutInformation Component */
.change-checkout-container {
    display: flex;
    padding: 22px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 26px;
    align-self: stretch;
}

.change-checkout-top-container {
    display: flex;
    height: 42.5px;
    align-items: center;
    gap: 9px;
}

.change-checkout-bottom-container {
    display: flex;
    height: 42.5px;
    align-items: center;
    gap: 9px;
}

.change-checkout-text {
    color: #000;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.change-checkout-arrow {
    width: 8px;
    height: 9.5px;
}

.change-checkout-arrow svg {
    width: 8px;
    height: 9.5px;
}

/* BottomPageSpacer Component - Figma Specifications */
.bottom-page-spacer {
    height: 172px;
    align-self: stretch;
}

/* MicrophoneButton Component - Figma Specifications */
.microphone-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 62px;
}

.microphone-button {
    display: flex;
    width: 72px;
    height: 72px;
    padding: 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #000;
    border: none;
    cursor: pointer;
}

.microphone-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

/* Step 3: Add new CSS classes for recording state */
.microphone-recording-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 62px;
}

.microphone-recording-button {
    display: flex;
    width: 72px;
    height: 72px;
    padding: 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #000;
    border: none;
    cursor: pointer;
}

.microphone-x-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.microphone-upload-icon {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
}

/* AITextInputField Component - Figma Specifications */
.ai-text-input-field-container {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 1px solid #D2D2D2;
}

.ai-text-input-field {
    color: #000;
    font-family: Circular Std;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
}

.ai-text-input-field::placeholder {
    color: #000;
    font-family: Circular Std;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* MicrophoneButton Component */
.microphone-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 62px;
}

.microphone-button {
    display: flex;
    width: 72px;
    height: 72px;
    padding: 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
}

.microphone-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

/* Recording State Styles */
.microphone-recording-container {
    display: flex;
    width: 210px;
    justify-content: space-between;
    align-items: center;
}

.microphone-button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 62px;
}

.microphone-x-button {
    display: flex;
    width: 72px;
    height: 72px;
    padding: 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
}

.microphone-upload-button {
    display: flex;
    width: 72px;
    height: 72px;
    padding: 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
}

.microphone-x-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.microphone-upload-icon {
    width: 31.833px;
    height: 31.9px;
    flex-shrink: 0;
    fill: #C00;
}

/* AI Input Field Styles - Proper mobile keyboard handling */
.ai-input-field-container {
    position: fixed;
    bottom: env(keyboard-inset-height, env(safe-area-inset-bottom, 0));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 22px 0px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--color-background-primary);
    z-index: 1000;
    max-width: calc(var(--container-max-width) - 44px);
    width: calc(100% - 44px);
    box-sizing: border-box;
    /* Uses CSS environment variables for proper mobile keyboard handling */
}

.ai-text-input-field {
    display: flex;
    padding: 10px 0;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid #D2D2D2;
}

.ai-text-input {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary), var(--font-family-system);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height);
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    height: auto;
    max-height: 200px;
    overflow-y: auto;
    resize: none;
    letter-spacing: 0.2px;
}

.ai-text-input::placeholder {
    color: #999;
}

/* Message Components */
.message-container {
    display: flex;
    padding: 0 2px 0 70px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    align-self: stretch;
}

.message-bubble {
    display: flex;
    padding: 20px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: #F4F4F4;
}

.message-text {
    flex: 1 0 0;
    color: #000;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: #000;
    font-family: "Circular Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 162.5% */
    letter-spacing: 0.352px;
}

.message-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 22px;
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 200px); /* Account for basket and input field */
}

.assistant-container {
    display: flex;
    padding: 22px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.assistant-text {
    flex: 1 0 0;
    color: #000;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: #000;
    font-family: "Circular Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px; /* 187.5% */
    letter-spacing: 0.352px;
}

/* Markdown elements within assistant messages */
.assistant-text h1,
.assistant-text h2,
.assistant-text h3,
.assistant-text h4,
.assistant-text h5,
.assistant-text h6 {
    font-family: "Circular Std";
    font-weight: 500;
    margin: 16px 0 8px 0;
    line-height: 1.4;
}

.assistant-text h1 { font-size: 24px; }
.assistant-text h2 { font-size: 21px; }
.assistant-text h3 { font-size: 18px; }
.assistant-text h4 { font-size: 16px; }

.assistant-text p {
    margin: 0 0 12px 0;
}

.assistant-text p:last-child {
    margin-bottom: 0;
}

.assistant-text strong,
.assistant-text b {
    font-weight: 500;
}

.assistant-text ul,
.assistant-text ol {
    margin: 12px 0;
    padding-left: 24px;
}

.assistant-text li {
    margin: 6px 0;
    line-height: 27px;
}

.assistant-text code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
}

.assistant-text pre {
    background: #f4f4f4;
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 12px 0;
}

.assistant-text pre code {
    background: none;
    padding: 0;
}

/* ====================================================================
   AI BUTTON COMPONENT
   ==================================================================== */

.ai-button {
    display: flex;
    height: 106px;
    width: 100%;
    padding: 6px 22px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--color-background-black);
    background: var(--color-background-black);
    cursor: pointer;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
    margin: 0px 0px 26px 0px;
}

.ai-button:hover {
    opacity: 0.8;
}

.ai-button:active {
    opacity: 0.6;
}

.ai-button-left-bar {
    width: 40px;
    height: 106px;
    background: var(--color-background-black);
    flex-shrink: 0;
}

.ai-button-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-white);
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: var(--font-weight-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

.ai-button-mic {
    display: flex;
    width: 62px;
    height: 62px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid var(--color-text-white);
    flex-shrink: 0;
}

.assistant-text blockquote {
    border-left: 3px solid #ddd;
    padding-left: 16px;
    margin: 12px 0;
    color: #666;
}

.assistant-text hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 16px 0;
}

.assistant-text a {
    color: #007BFF;
    text-decoration: none;
}

.assistant-text a:hover {
    text-decoration: underline;
}

.assistant-text table {
    border-collapse: collapse;
    width: 100%;
    margin: 12px 0;
}

.assistant-text th,
.assistant-text td {
    border: 1px solid #e0e0e0;
    padding: 8px;
    text-align: left;
}

.assistant-text th {
    background: #f4f4f4;
    font-weight: 500;
}


