:root {
    --accent: #000000;
    --accent2: #124e8f;

    --bg: #FBFBFB;
    --bg-2: #FBFBFB;
    --header-bg: rgba(255, 255, 255, 0.8);

    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --shop-bg: #ffffff;

    --text: #1d1d1f;
    --text-inv: #ffffff;
    --text-dim: #444444;
    --text-sec: #555555;

    --border: #eee;
    --mono: 'JetBrains Mono', monospace;
}

button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    /* Adjust '80px' to match the height of your navigation bar */
    scroll-padding-top: 80px;
}

/* --- Base Styles --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    scroll-behavior: smooth;
}

/* --- Header --- */
header {
    padding: 20px 5%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo-icon {
    color: #000000;
}

nav {
    display: flex;
    justify-content: space-between;
    /* Keeps Logo left, Cart right */
    align-items: center;
    /* This is the magic line for vertical alignment */
}

nav a {
    text-decoration: none;
    color: var(--text);
    margin-left: 20px;
    font-weight: 500;
}

/* --- Hero --- */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: var(--bg-2);
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    /* Tightens text for a modern look */
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    /* Increases readability */
    color: var(--text-dim);
    /* Slightly softer color for the body text */
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero a {
    color: var(--accent2);
    /* Use your brand's accent color (e.g., Orange or Blue) */
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: .7;
}

.hero a:hover {
    border-bottom: 2px solid var(--accent);
    opacity: 0.8;
}

.hero-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .hero {
        margin: 20px 10px;
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

/* --- Product Grid & Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid var(--border);
    background: var(--card-bg);
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    transition: 0.3s all;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.product-info h3{
    color: var(--text-dim);
}

.description {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 50px;
}

.price {
    font-family: var(--noto);
    color: var(--text-dim);
    font-weight: bold;
    font-size: 1.2rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    /* Pushes color left, price/button right */
    align-items: center;
    /* Perfectly aligns them vertically */
    padding-top: 15px;
    border-top: 1px solid #eee;
    /* Subtle industrial separator */
    width: 100%;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Precise gap between price and button */
}


.add-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em; /* Slightly spaced out text looks more premium */
    text-transform: uppercase; /* Optional: adds to the technical look */
    
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000; /* Thin border prevents layout shifting on hover */
    padding: 5px 24px; /* Balanced padding to align nicely with the picker */
    border-radius: 0px; /* Perfect */
    cursor: pointer;

    /* Tight, fast transition for a high-end feel */
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    border-radius: 2px;
}

/* 1. Hover: Complete inverted monochrome look */
.add-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
    /* No shadows, no lifting. Just clean, absolute contrast. */
}

/* 2. Click (Active): Snappy physical press illusion */
.add-btn:active {
    background: #f0f0f0; /* Ultra-subtle gray flash so the user knows it registered */
    color: #000000;
    border-color: #000000;
    transition: all 0.05s ease; /* Keeps the click feeling instant and mechanical */
}


.color-picker {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000000;
    
    /* Structure & Shape */
    padding: 6px 32px 6px 12px; /* Extra right padding to clear space for the custom arrow */
    border: 0px solid #111111; /* Sharp, high-contrast crisp border */
    border-radius: 0px;        /* Keeping it 100% flat and architectural */
    background-color: #ffffff;
    cursor: pointer;

    /* Resetting the default browser look */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Custom Minimalist Down-Arrow (Clean SVG Vector) */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3.5 L5 7.5 L9 3.5' fill='none' stroke='%23111111' stroke-width='1.2'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    
    /* Smooth transition for interactions */
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Subtle, serious hover state */
.color-picker:hover {
    background-color: #111111;
    color: #ffffff;
    /* Swaps the black arrow to a white arrow on hover */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3.5 L5 7.5 L9 3.5' fill='none' stroke='%23ffffff' stroke-width='1.2'/></svg>");
}

.color-picker:focus {
    outline: none;
}


.product-image {
    cursor: pointer;
    /* This changes the mouse to the "hand" icon */
}


/* You should also do this for your modal thumbnails and close button */
.thumb-item {
    cursor: pointer;
}

/* --- Checkout Section (The Elevation Look) --- */
.checkout-container {
    padding: 80px 5%;
    background: var(--bg-2);
    color: var(--text);
}

.checkout-box {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 0px;
}

.cart-items {
    margin-bottom: 40px;
}

.cart-totals-section p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.cart-totals-section h3 {
    font-size: 1.2rem;
    font-family: var(--noto); /* Your tech/modern font */
}


/* Form Styles */
#order-form input,
#order-form textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 0px;
    font-family: inherit;
    box-sizing: border-box;
    resize: vertical;
}

#order-form input:focus {
    outline: none;
    border-color: var(--accent2);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
}

#cust-zip {
    flex: 0.35;
}

#cust-city {
    flex: 0.65;
}

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: var(--text-inv);
    border: none;
    padding: 20px;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: inter;
    cursor: pointer;
    text-transform: uppercase;
}

/* --- Cart Items inside List --- */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.item-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-thumb {
    width: 100px;
    height: 100px;
    background: var(--bg-2);
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 0px;
}

.item-name {
    display: block;
    font-weight: 700;
    color: var(--text);
}

.item-price {
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
    margin-top: 20px;
}

/* Targets the first span (Total:) */
.total-row span:nth-child(1) {
    font-weight: 400;
}

/* Targets the second span (Price) */
.total-row span:nth-child(2) {
    font-weight: 800;
}

.qty-dropdown {
    background: #ffffff;
    padding: 0 10px;
    font-size: 0.9rem;
    cursor: pointer;
    height: 100%;
    box-sizing: border-box;
    width: 50px;
    outline: none;
    border: 0 !important;
}

.cart-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: none;
    color: var(--text);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 0px;
    transition: all 0.2s;
    box-sizing: border-box;
    border: none; 
}

.cart-qty-btn:hover {
    background: var(--bg-2);
    color: var(--accent2);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 35px;
}

.remove-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    /* Make it a perfect square */
    height: 100%;
    /* Match the dropdown height */
    background: var(--bg-2);
    color: var(--text-dim);
    border: 0px solid var(--border);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    /* Prevents the text from pushing the box taller */
    transition: all 0.2s ease;
    box-sizing: border-box;
    /* Ensures border is included in the height */
    border-radius: 0px;
}

.remove-x:hover {
    background: #ff4d4d;
    color: white;
    border-color: #ff4d4d;
}

.disclaimer {
    color: var(--text-dim);
    margin-top: 20px;
    font-size: 0.85rem;
    text-align: center;
}

/* Mobile Optimization for Cart Items */
@media (max-width: 700px) {
    .cart-item {
        flex-direction: column;
        /* Stacks .item-left and .item-right */
        align-items: flex-start;
        /* Aligns everything to the left */
        gap: 20px;
        padding: 20px 0;
    }

    .item-right {
        width: 100%;
        /* Spans full width when stacked */
        display: flex;
        flex-direction: row-reverse;
        /* Puts price and controls on opposite sides */
        justify-content: space-between;
        align-items: center;
    }

    .item-price {
        margin-bottom: 0;
        /* Remove that bottom margin on mobile */
    }

    .item-left {
        width: 100%;
    }
}

/**modal**/


.modal {

    display: none ;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 2000;

    background-color: rgba(0, 0, 0, 0.8);

    backdrop-filter: blur(5px);



    /* THE POWER COMBO FOR CENTERING */

    display: none;

    align-items: center;
    /* Vertically centers the child */

    justify-content: center;
    /* Horizontally centers the child */

    padding: 15px;
    box-sizing: border-box;

}

.modal-content {

    background-color: var(--bg);

    /* FIX: Remove all margins. Margin: auto or 5% will push it down. */

    margin: 0;

    width: 90%;

    max-width: 1200px;

    max-height: 75vh;

    overflow-y: auto;

    position: relative;

    border: 1px solid var(--border);

    padding: 2rem;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);

    border-radius: 0px;

}

.modal-info {

    margin-bottom: 7rem;

}

.close-modal {

    position: absolute;

    right: 20px;

    top: 10px;

    font-size: 2rem;

    cursor: pointer;

    color: var(--text-dim);

}

.modal-body {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    align-items: center;

}

.modal-image-fixed-container {

    width: 100%;

    display: flex;

    justify-content: center;
    /* Keeps the actual image centered in its half */

}

.modal-gallery {

    display: flex;

    flex-direction: column;

    align-items: center;
    /* Centers thumbnails under the image */

}

#modal-main-img {

    height: 500px;

    width: auto;

    max-width: 100%;

    object-fit: cover;

    border: 1px solid var(--border);

    border-radius: 0px;

    box-sizing: border-box;

}

/* Mobile Responsiveness: Stack them so it doesn't look cramped */

@media (max-width: 768px) {

    .modal-body {

        grid-template-columns: 1fr;

    }

    #modal-main-img {

        height: auto;

        max-height: 400px;

    }

}

.modal-thumbnails {
    display: flex;
    /* THE KEY: Allows thumbs to drop to a new line if they don't fit */
    flex-wrap: wrap; 
    gap: 10px;
    margin-top: 15px;
    justify-content: center; /* Keeps them centered under the main image */
    
    /* Ensure the container itself doesn't exceed the parent width */
    max-width: 100%; 
    box-sizing: border-box;
}

.thumb-item {
    /* Use a slightly flexible width */
    width: 50px; 
    height: 50px;
    /* flex-shrink prevents the browser from squishing the thumbs into ovals */
    flex-shrink: 0; 
    object-fit: cover;
    border-radius: 0px;
    border: 1px solid var(--border);
    cursor: pointer;
}

.thumb-item:hover {

    opacity: 0.9;

    transform: translateY(-3px);

}

@media (max-width: 480px) {
    .thumb-item {
        /* This calculates width based on the number of images. 
           Example: for 4 images, 20% width allows for gaps. */
        width: 18%; 
        
        /* This is the magic line that keeps them square as they shrink */
        aspect-ratio: 1 / 1; 
        
        /* Reset heights/widths from previous rules */
        height: auto; 
        max-width: 60px; /* Prevents them from getting too big on the 'high end' of 480px */
        
        flex-shrink: 1; /* Allows them to get smaller than their base size */
    }

    .close-modal {
        /* Fix the X to the top right corner of the box */
        top: 10px;
        right: 15px;
        background: rgba(255, 255, 255, 0.8); /* Add a slight background for legibility */
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 100; /* Ensure it stays above the image */
    }
}

    /**FOOTER**/
    /* --- Footer Styling --- */
    .site-footer {
        background-color: var(--bg-2);
        /* The light grey wash */
        color: var(--text);
        padding: 60px 5% 20px 5%;
        border-top: 1px solid var(--border);
        margin-top: 80px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        /* Good for mobile stacking */
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
        color: var(--accent);
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        color: var(--text-dim);
    }

    /* List Styling */
    .site-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .site-footer ul li {
        margin-bottom: 10px;
    }

    .site-footer ul li a {
        text-decoration: none;
        color: var(--text);
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .site-footer ul li a:hover {
        color: var(--accent2);
        /* Highlight blue on hover */
    }

    /* Contact Specifics */
    .footer-contact a {
        font-family: var(--noto);
        /* Keeps the "Tech" vibe */
        font-size: 0.85rem;
    }

    /* Bottom Copyright Bar */
    .footer-bottom {
        max-width: 1200px;
        margin: 40px auto 0 auto;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--text-dim);
    }

    /* Responsive Fix for small screens */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-logo,
        .footer-links,
        .footer-contact {
            width: 100%;
        }
    }

@media (max-width: 768px) {

    .thumb-item {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border: 1px solid var(--border);
        cursor: pointer;
        transition: opacity 0.2s;
        border-radius: 0px;
        transition: all .3s ease;
    }

    .thumb-item:hover {
        opacity: 0.9;
        transform: translateY(-3px);
    }

}

.mini-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #eee;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease; /* Added smooth sizing transitions */
    padding: 15px;
}

.mini-cart.hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensures header contents align nicely when open */
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.mini-cart.force-hide {
    opacity: 0;
    pointer-events: none; 
    transform: translateY(20px);
}

#mini-cart-items {
    max-height: 200px;
    overflow-y: auto;
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.mini-thumb {
    width: 40px;
    height: 40px;
    border-radius: 0px;
    object-fit: cover;
}

.mini-cart-footer {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.mini-cart-footer button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 0px;
    cursor: pointer;
    margin-top: 5px;
}

.mini-cart-footer button:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* The toggle button styling */
#minimize-cart {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0;
    margin: 0;

    /* Flawless structural centering */
    display: flex;
    align-items: center;      
    justify-content: center;   
    line-height: 1;            
    height: 100%;
    width: 100%;

    /* Physically nudge the font down to counteract inherent baseline high shifts */
    transform: translateY(1px); 
}

/* Minimized State */
.mini-cart.minimized {
    width: 40px;                 /* Shifted from 30px to 40px to give the plus sign breathing room */
    height: 40px;                
    padding: 0 !important;       /* CRITICAL: Nukes the 15px inner layout padding */
    display: flex !important;    /* Overrides everything into a flexbox center grid */
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px;
    overflow: hidden;
}

/* Strip layout properties from header elements while minimized */
.mini-cart.minimized .mini-cart-header {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hide everything except the button when minimized */
.mini-cart.minimized #mini-cart-content,
.mini-cart.minimized .mini-cart-header span {
    display: none !important;
}

/* Removed old pseudo-element rules that broke spacing */
.mini-cart.minimized::before {
    display: none !important;
}

@media (max-width: 768px) {

    /* 1. Hero Section: Reduce font size so it doesn't take up the whole screen */
    .hero {
        margin: 40px 15px;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* 2. Product Grid: Switch to 1 column or 2 small columns */
    .product-grid {
        grid-template-columns: 1fr;
        /* Stack products vertically */
        gap: 20px;
        padding: 10px;
    }

    /* 3. Mini-Cart: Make it wider and easier to hit with a thumb */
    .mini-cart {
        width: calc(100% - 40px);
        /* Almost full width with margin */
        left: 20px;
        right: 20px;
        bottom: 10px;
    }

    /* 4. Order Section: Stack the form rows */
    .form-row {
        display: flex;
        flex-direction: column;
        /* Stack Name/Phone and Zip/City */
        gap: 0;
    }

    .checkout-container {
        padding: 20px 10px;
    }

    /* 5. Cart Items: Adjust layout for narrow screens */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .item-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .add-btn:active,
    .submit-btn:active {
        transform: scale(0.95);
        background-color: #333;
    }
}

@media (max-width: 768px) {

    body {
        font-size: 15px;
        /* Drop from 16px/18px to 15px for better density */
    }

    h1 {
        font-size: 1.8rem;
        /* Significant drop from desktop sizes */
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        line-height: 1.5;
        /* Increase breathing room between lines for readability */
    }


    .mini-cart {
        /* Reset positioning to prevent it going off-screen */
        right: 10px;
        left: 10px;
        bottom: 10px;

        /* Set width to fit the screen perfectly with a 10px gap on each side */
        width: auto;
        max-width: none;

        /* Make it more compact */
        padding: 12px;
        border-radius: 0px;
    }

    #mini-cart-items {
        /* Reduce the max height so it doesn't take up half the screen */
        max-height: 120px;
    }

    .mini-item {
        font-size: 0.85rem;
        /* Slightly smaller text */
        gap: 8px;
    }

    .mini-thumb {
        width: 35px;
        /* Smaller images */
        height: 35px;
    }

    .mini-cart-footer button {
        padding: 12px;
        /* Bigger tap area for thumbs (easier to hit) */
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 15px;
    }
}

@media (max-width: 480px) {

    .nav-links {
        display: none;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
    }
}


/**Succes buy alert**/

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px); /* Modern frosted glass look */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.success-overlay.hidden {
    display: none;
    opacity: 0;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--accent); /* Your Navy/Black color */
    color: white;
    font-size: 30px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.success-content h2 {
    margin-bottom: 10px;
    font-family: var(--noto);
}

.success-content p {
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.5;
}

.success-close-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.success-close-btn:hover {
    transform: scale(1.05);
}



/**swish disclaimer etc**/

.order-disclaimer {
    background: #f4f7f9; /* Soft grey-blue background */
    border-left: 4px solid #78909c; /* Muted slate blue */
    padding: 15px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-align: left;
    color: #455a64; /* Darker muted slate for text */
    line-height: 1.6;
    border-radius: 0 4px 4px 0;
}

.swish-total {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
    margin: 10px 0;
}

#swish-qr {
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.2s;
}

#swish-qr:hover {
    transform: scale(1.02);
}

/* --- New Mobile Swish Styling (Appends safely to your original styles) --- */
.mobile-number-label {
    margin: 15px 0 5px 0 !important;
    font-size: 1rem;
    color: var(--text-dim);
}

.mobile-swish-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 260px;
    margin: 10px auto 0 auto;
}

.swish-app-btn {
    display: inline-block;
    background-color: #333; /* Swish Brand Orange */
    color: white;
    padding: 12px 20px;
    border-radius: 0px; /* Kept sharp to match your success-close-btn layout */
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.swish-app-btn:hover {
    transform: scale(1.03);
}

.copy-number-btn {
    background-color: #f4f4f4;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 0px; /* Kept sharp to match your aesthetic */
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.copy-number-btn:hover {
    background-color: #eaeaea;
}

/* --- RESPONSIVE TOGGLES --- */
/* Desktop: Hide phone UI elements completely */
@media (min-width: 769px) {
    .mobile-swish-info {
        display: none !important;
    }
}

/* Mobile: Hide desktop-only text and QR link, show app features */
@media (max-width: 768px) {
    .desktop-text-only, #swish-link {
        display: none !important;
    }
    .success-content p {
        margin-bottom: 15px; /* Adjusting spacing slightly for small screens */
    }
}

/**FAQ**/

.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
}

.faq-container {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--text-dim);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-radius: 8px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Class added via JS */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content length */
}

.faq-item.active .icon {
    transform: rotate(45deg); /* Optional: turns + into an x */
}


/**ABOUT SECTION**/
.about-designer {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
}

.about-designer h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.about-designer p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.bio-box {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.portfolio-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.portfolio-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .about-designer {
        margin: 30px 20px;
        padding: 25px;
    }
}