:root {
    --t36-bg: #000000;
    --t36-card-bg: #ffffff;
    --t36-accent: #E1FF01;
    --t36-text-main: #ffffff;
    --t36-text-dark: #000000;
    --t36-text-muted: #888888;
    --t36-border-radius: 12px;
    --t36-font-primary: "obviously", sans-serif;
    --t36-font-display: "acumin-variable", sans-serif;
    --t36-font-compressed: "obviously-compressed", sans-serif;
    --t36-font-statement: "acumin-pro", sans-serif;
    --t36-font-narrow: "obviously-narrow", sans-serif;
}

body {
    margin: 0;
    background-color: var(--t36-bg);
    font-family: var(--t36-font-primary);
}

.t36-shop-wrap {
    color: var(--t36-text-main);
    padding: 0;
    overflow-x: hidden;
}

/* Header */
.t36-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #333;
}

.t36-logo img {
    height: 60px;
    /* Adjusted based on reference visibility */
    display: block;
}

.t36-nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.t36-nav a:hover {
    color: #ffd700;
}

/* Hamburger */
.t36-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

/* Header Layout Update */
.t36-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.t36-cart-trigger {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--t36-text-main);
}

.t36-cart-trigger:hover {
    color: var(--t36-accent);
    transform: translateY(-2px);
}

.t36-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--t36-accent);
    color: var(--t36-text-dark);
    font-size: 10px;
    font-weight: 900;
    padding: 3px 6px;
    border-radius: 20px;
    min-width: 12px;
    text-align: center;
    line-height: 1;
    display: none;
    /* Hidden when 0 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.t36-cart-count.visible {
    display: block;
}

.t36-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.t36-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.t36-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.t36-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero */
.t36-hero {
    position: relative;
    padding: 60px 0;
    background-color: #fff;
    color: #000;
    overflow: hidden;
}

.t36-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.t36-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 140px;
    /* Aligned with the end of the logo as per reference */
}

.t36-hero-prefix {
    font-family: var(--t36-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
}

.t36-hero-content h1 {
    font-family: var(--t36-font-display);
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0;
}

.t36-hero-content p {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.t36-hero-flex {
    display: flex;
    gap: 20px;
    padding: 0 40px 0 140px;
}

.t36-video-container {
    width: 60%;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.t36-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video Poster / Cover */
.t36-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    background: #000;
}

.t36-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.t36-video-container:hover .t36-video-poster img {
    opacity: 1;
}

.t36-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.t36-play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    /* Offset for visual centering */
}

.t36-video-container:hover .t36-play-button {
    background: var(--t36-accent);
    border-color: var(--t36-accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.t36-hero-statement {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 40px;
}

.t36-hero-statement p {
    font-family: var(--t36-font-statement);
    font-weight: 200;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.t36-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Grid */
.t36-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px;
}

/* Product Card */
.t36-card {
    background: var(--t36-card-bg);
    color: var(--t36-text-dark);
    border-radius: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 520px;
}

.t36-card:hover {
    transform: translateY(-5px);
}

/* New Image-based Product Item */
.t36-card-img {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.t36-card-img:hover {
    transform: translateY(-12px) scale(1.02);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered load */
.t36-card-img:nth-child(1) {
    animation-delay: 0.1s;
}

.t36-card-img:nth-child(2) {
    animation-delay: 0.2s;
}

.t36-card-img:nth-child(3) {
    animation-delay: 0.3s;
}

.t36-card-img:nth-child(4) {
    animation-delay: 0.4s;
}

.t36-card-img:nth-child(5) {
    animation-delay: 0.5s;
}

.t36-card-img:nth-child(6) {
    animation-delay: 0.6s;
}

.t36-card-img img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
}

.t36-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.t36-cloud-icon {
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.t36-cloud-icon img {
    height: 1.5rem;
    /* Matches the font-size of the product title */
    width: auto;
    object-fit: contain;
}

.t36-product-title {
    font-family: var(--t36-font-primary);
    font-weight: 400;
    font-size: 1.5rem;
    max-width: 70%;
    margin: 0;
    /* Ensures alignment with the icon at the top */
    line-height: 1.1;
}

.t36-card-body {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.t36-card-body img {
    max-width: 100%;
    height: auto;
}

.t36-card-footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.t36-footer-top {
    border-bottom: 1px solid var(--t36-text-dark);
    padding-bottom: 4px;
    margin-bottom: 1px;
}

.t36-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t36-footer-left small {
    display: block;
    color: var(--t36-text-dark);
    font-family: var(--t36-font-primary);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.t36-footer-bottom p {
    font-family: var(--t36-font-primary);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--t36-text-dark);
    margin: 0;
}

.t36-ts-logo {
    font-family: var(--t36-font-display);
    font-weight: 900;
    font-size: 0.7rem;
    /* Matches the font-size of the slogan text */
}

/* Modal */
.t36-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.t36-modal-content {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 40px;
    width: 95%;
    max-width: 1000px;
    max-height: 92vh;
    position: relative;
    color: #000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
}

.t36-modal-content::-webkit-scrollbar {
    display: none;
}

.t36-close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 2rem;
    font-family: var(--t36-font-primary);
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    color: #333;
}

.t36-modal-grid {
    display: grid;
    grid-template-columns: 1.5fr 140px 2fr;
    gap: 25px;
    align-items: stretch;
}

.t36-modal-main-img .t36-card {
    border: none;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    cursor: default;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
}

.t36-modal-main-img .t36-card .t36-card-body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    padding: 0;
    position: relative;
}

.t36-modal-main-img .t36-card .t36-card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t36-modal-main-img .t36-card:hover {
    transform: none;
}

/* Global Product Navigation Arrows (Outside content) */
.t36-global-nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 4rem;
    color: white;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px;
    font-family: serif;
    opacity: 0.7;
}

.t36-global-nav-arrow:hover {
    opacity: 1;
    color: #ffd700;
    /* Yellow accent on hover for brand feel */
    transform: translateY(-50%) scale(1.1);
}

.t36-global-nav-arrow.prev {
    left: 40px;
}

.t36-global-nav-arrow.next {
    right: 40px;
}

/* Modal Content Inner Arrows (Existing) */
.t36-modal-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
}

.t36-nav-arrow {
    background: none;
    border: none;
    font-size: 3.5rem;
    color: #000;
    cursor: pointer;
    pointer-events: auto;
    line-height: 1;
    transition: opacity 0.2s;
    font-family: serif;
}

.t36-nav-arrow:hover {
    opacity: 0.5;
}

/* Gallery Rail */
.t36-modal-gallery {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    /* Minimum space */
    padding: 0;
    height: 100%;
}

.t36-thumb {
    width: 100%;
    aspect-ratio: 1 / 1.3;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.t36-thumb.active {
    border-color: #000;
}

.t36-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info (Right) */
.t36-modal-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    padding: 5px 0;
    height: 100%;
}

.t36-info-top .t36-category {
    font-family: var(--t36-font-primary);
    font-weight: 400;
    font-size: 0.85rem;
    color: #333;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.t36-info-top h2 {
    font-family: var(--t36-font-primary);
    font-weight: 400;
    font-size: 1.8rem;
    margin: 8px 0 4px 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.t36-info-divider {
    height: 1px;
    background: #ccc;
    width: 100%;
    margin-bottom: 20px;
}

.t36-price {
    font-family: var(--t36-font-primary);
    font-weight: 400;
    font-size: 1.2rem;
    margin: 0;
}

.t36-info-middle {
    margin-top: auto;
}

/* Size Selector */
.t36-size-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.t36-size-label {
    font-family: var(--t36-font-primary);
    font-size: 0.85rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.t36-size-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.t36-size-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 5px 4px 5px;
    font-family: var(--t36-font-primary);
    font-size: 2rem;
    /* Large and bold */
    font-weight: 700;
    line-height: 0.8;
    cursor: pointer;
    text-transform: lowercase;
    text-align: center;
    transition: all 0.2s;
    opacity: 0.8;
}

.t36-size-btn:hover {
    opacity: 1;
    transform: translateX(5px);
}

.t36-size-btn.active {
    opacity: 1;
    background: #000;
    /* Active indicator if needed, e.g., outline */
    border: 2px solid #ccc;
}

.t36-desc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 2px 0;
}

.t36-desc-header span {
    font-family: var(--t36-font-primary);
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.t36-expand-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t36-expand-btn.active {
    transform: rotate(45deg);
    background: #000;
    color: #fff;
    border-color: #000;
}

.t36-desc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.t36-desc-content.open {
    max-height: 200px;
    margin-bottom: 20px;
}

.t36-desc-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    font-family: var(--t36-font-primary);
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}


.plus-icon {
    font-size: 1.5rem;
    color: #999;
    line-height: 1;
}

/* Add to Cart Button */
.t36-add-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: 1.5px solid #ccc;
    border-radius: 12px;
    padding: 12px;
    font-family: var(--t36-font-primary);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.t36-add-btn:hover {
    border-color: #000;
}

.t36-add-btn:disabled {
    background: #f5f5f5;
    color: #999;
    border-color: #eee;
    cursor: not-allowed;
}

.t36-modal-motto {
    font-family: var(--t36-font-display);
    font-size: 1.1rem;
    color: #000;
    margin-top: 30px;
}

.t36-modal-motto strong {
    font-weight: 900;
}

.t36-modal-motto em {
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 1024px) {
    .t36-modal-grid {
        grid-template-columns: 1fr;
    }

    .t36-modal-gallery {
        flex-direction: row;
        justify-content: center;
    }

    .t36-header {
        padding: 15px 20px;
    }

    .t36-hero-content {
        padding-left: 20px;
    }

    .t36-hero-content h1 {
        font-size: 4rem;
    }

    .t36-hero-flex {
        flex-direction: column;
        padding: 0 20px;
    }

    .t36-video-container,
    .t36-hero-side-img {
        width: 100%;
    }
}

/* Shopping Cart Modal */
.t36-cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hidden by default */
    width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    font-family: var(--t36-font-primary);
}

.t36-cart-modal.open {
    right: 0;
}

.t36-cart-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t36-cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.t36-close-cart {
    font-size: 2rem;
    cursor: pointer;
    line-height: 0.8;
}

.t36-cart-items {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
}

.t36-empty-cart {
    text-align: center;
    color: #999;
    margin-top: 50px;
}

.t36-cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.t36-cart-item img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.t36-cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t36-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.t36-item-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.t36-item-price {
    font-weight: 600;
}

.t36-remove-item {
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    align-self: center;
}

.t36-cart-footer {
    padding: 25px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.t36-cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.t36-shipping-legend {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
    font-family: var(--t36-font-primary);
}

.t36-checkout-btn {
    width: 100%;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-family: var(--t36-font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.05em;
}

.t36-checkout-btn:hover {
    background: #1ebc57;
}

@media (max-width: 768px) {
    .t36-hero-content {
        padding-left: 20px;
    }

    .t36-hero-flex {
        flex-direction: column;
        padding: 0 20px;
    }

    .t36-video-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .t36-hero-statement {
        width: 100%;
        padding-right: 0;
    }

    .t36-hamburger {
        display: flex;
    }

    .t36-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: black;
        display: flex;
        /* Enforce flex layout */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        margin-left: 0;
        padding: 0;
        /* Reset padding for better centering */
    }

    .t36-nav.active {
        right: 0;
    }

    .t36-nav a {
        margin: 15px 0;
        /* Vertical spacing */
        font-size: 10px;
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    /* Prevent scrolling when menu is open */
    body.no-scroll {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .t36-cart-modal {
        width: 100%;
        right: -100%;
    }

    .t36-grid {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .t36-card-img {
        width: 100%;
    }
}

/* Specific Modal refinements for Mobile */
@media (max-width: 600px) {
    .t36-modal-content {
        width: 90%;
        margin: 20px auto;
        padding: 25px 15px;
        border-radius: 30px;
        max-height: 85vh;
        /* Reduced height to ensure it fits with browser bars */
        display: block;
        /* Ensure block layout for natural scrolling */
    }

    .t36-close {
        right: 15px;
        top: 10px;
        z-index: 100;
        background: rgba(255, 255, 255, 0.8);
        /* Semi-transparent background for visibility over images */
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .t36-modal-grid {
        gap: 15px;
    }

    .t36-modal-info h2 {
        font-size: 1.5rem;
        margin-top: 5px;
    }

    .t36-modal-info {
        padding-bottom: 40px;
        /* Extra space at the bottom */
    }

    .t36-price {
        font-size: 1.1rem;
    }

    .t36-modal-gallery {
        gap: 6px;
    }

    .t36-thumb {
        width: 80px;
        height: 105px;
        border-radius: 12px;
    }

    .t36-add-btn {
        padding: 12px;
        font-size: 0.85rem;
    }

    .t36-modal-motto {
        font-size: 0.75rem;
        margin-top: 15px;
    }

    .t36-modal-motto strong {
        display: block;
    }

    .t36-modal-nav-arrows {
        padding: 0;
    }

    .t36-nav-arrow {
        font-size: 2.5rem;
    }

    .t36-global-nav-arrow {
        font-size: 1.5rem;
        padding: 0;
        opacity: 1;
        background: black;
        /* High contrast black for product navigation */
        color: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 1100;
        top: auto;
        bottom: 30px;
        /* Moved to the bottom to avoid photo navigation */
    }

    .t36-global-nav-arrow.prev {
        left: 20px;
    }

    .t36-global-nav-arrow.next {
        right: 20px;
    }
}